:root {
    --primary: #0F172A;
    --secondary: #334155;
    --accent: #2563EB;
    --bg-main: #FFFFFF;
    --bg-surface: #F8FAFC;
    --bg-alt-surface: #F1F5F9;
    --bg-card: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border-default: #E2E8F0;
    --border-subtle: #F1F5F9;
    --btn-hover: #1E40AF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.text-muted {
    color: var(--text-muted) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
}

.btn-outline-secondary {
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
}

.btn-outline-secondary:hover {
    background-color: var(--bg-surface);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container-custom {
        padding: 0 16px;
    }
}

/* ===== header ===== */
.hovrako-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.hovrako-header .navbar {
    padding: 0.75rem 0;
    background-color: #FFFFFF;
}

.hovrako-header .hovrako-brand-logo {
    max-width: 40px;
    height: auto;
    object-fit: contain;
}

.hovrako-header .hovrako-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.hovrako-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
}

.hovrako-header .nav-link:hover,
.hovrako-header .nav-link:focus {
    color: #2563EB;
}

.hovrako-header .hovrako-btn-primary {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hovrako-header .hovrako-btn-primary:hover {
    background-color: #1E40AF;
    color: #FFFFFF;
}

.hovrako-header .navbar-toggler-icon-custom svg {
    width: 28px;
    height: 28px;
    color: #0F172A;
}

@media (max-width: 991.98px) {
    .hovrako-header .navbar-collapse {
        padding: 1.5rem 0;
        background-color: #FFFFFF;
    }

    .hovrako-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F1F5F9;
    }

    .hovrako-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* ===== hero ===== */
.hovrako-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0F172A;
    overflow: hidden;
    padding: 100px 0;
}

.hovrako-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: skewY(-4deg) translateY(-5%);
}

.hovrako-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../frontend/graphics/graphics/hovrako-corporate-travel-logistics.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hovrako-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hovrako-hero-geometry {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: #2563EB;
    opacity: 0.05;
    transform: skewX(-15deg);
}

.hovrako-hero-container {
    position: relative;
    z-index: 2;
}

/* .hovrako-hero-inner — сосед .hovrako-hero-bg-wrap, а не потомок: компенсирующий
   skewY(4deg) ничего не выпрямлял, а наклонял заголовок, текст и форму */
.hovrako-hero-inner {
    transform: none;
}

@media (max-width: 991px) {

    .hovrako-hero-bg-wrap,
    .hovrako-hero-inner {
        transform: none;
    }

    .hovrako-hero {
        padding: 80px 0;
    }
}

.hovrako-hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hovrako-hero-title {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hovrako-hero-description {
    font-size: 1.125rem;
    color: #F1F5F9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hovrako-hero-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hovrako-hero-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.hovrako-form-group {
    margin-bottom: 1.25rem;
}

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

.hovrako-input-icon {
    position: absolute;
    left: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #94A3B8;
}

.hovrako-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hovrako-input::placeholder {
    color: #94A3B8;
}

.hovrako-input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.hovrako-btn-primary {
    background: #2563EB;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s;
    cursor: pointer;
}

.hovrako-btn-primary:hover {
    background: #1E40AF;
}

/* ===== about-us ===== */
.about-us-section {
    padding: 8rem 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.about-us-section .about-badge {
    color: #2563EB;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid #2563EB;
}

.about-us-section .about-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}

.about-us-section .about-lead {
    font-size: 1.125rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.6;
}

.about-us-section .about-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.about-us-section .expertise-card {
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    height: 100%;
    transition: border-color 0.2s ease;
}

.about-us-section .expertise-card:hover {
    border-color: #2563EB;
}

.about-us-section .expertise-icon {
    width: 40px;
    height: 40px;
    color: #2563EB;
    margin-bottom: 1rem;
}

.about-us-section .expertise-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.about-us-section .expertise-desc {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

.about-us-section .btn-primary-custom {
    display: inline-block;
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 1rem;
    transition: background-color 0.2s ease;
}

.about-us-section .btn-primary-custom:hover {
    background-color: #1E40AF;
    color: #FFFFFF;
}

.about-us-section .btn-secondary-custom {
    display: inline-block;
    background-color: transparent;
    color: #0F172A;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #E2E8F0;
    transition: border-color 0.2s ease;
}

.about-us-section .btn-secondary-custom:hover {
    border-color: #0F172A;
    color: #0F172A;
}

.about-us-section .about-visual-container {
    position: relative;
    padding-left: 2rem;
}

.about-us-section .main-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-us-section .about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-section .stats-panel {
    position: absolute;
    bottom: -2rem;
    left: 0;
    background-color: #0F172A;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    color: #FFFFFF;
    min-width: 300px;
}

.about-us-section .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563EB;
}

.about-us-section .stat-text {
    font-size: 0.875rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 991.98px) {
    .about-us-section {
        padding: 4rem 0;
    }

    .about-us-section .about-visual-container {
        padding-left: 0;
        margin-top: 3rem;
    }

    .about-us-section .stats-panel {
        position: static;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 575.98px) {
    .about-us-section .action-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about-us-section .btn-primary-custom {
        margin-right: 0;
        text-align: center;
    }

    .about-us-section .btn-secondary-custom {
        text-align: center;
    }

    .about-us-section .stats-panel {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== corporate-preview ===== */
.corporate-preview {
    background-color: #FFFFFF;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.corporate-preview__heading {
    color: #0F172A;
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
}

.corporate-preview__subheading {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
}

.corporate-preview__card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.corporate-preview__card:hover {
    border-color: #0F172A;
}

.corporate-preview__image-link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.corporate-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.corporate-preview__card:hover .corporate-preview__image {
    transform: scale(1.05);
}

.corporate-preview__title-link {
    text-decoration: none;
    color: inherit;
}

.corporate-preview__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
    line-height: 1.2;
}

.corporate-preview__rating {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

.corporate-preview__price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0F172A;
}

.corporate-preview__description {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.corporate-preview__btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.corporate-preview__btn--primary {
    background-color: #0F172A;
    color: #FFFFFF;
}

.corporate-preview__btn--primary:hover {
    background-color: #1E40AF;
    color: #FFFFFF;
}

.corporate-preview__btn--share {
    background-color: #F8FAFC;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    padding: 0 0.75rem;
    min-width: 48px;
}

.corporate-preview__btn--share:hover {
    background-color: #F1F5F9;
    border-color: #334155;
}

.corporate-preview__toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== trips-preview ===== */
.trips-preview-block {
    padding: 8rem 0;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    color: #0F172A;
}

.trips-preview-block__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.trips-preview-block__subheading {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
}

.trips-preview-block__card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

.trips-preview-block__card:hover {
    border-color: #2563EB;
}

.trips-preview-block__card-img-link {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.trips-preview-block__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.trips-preview-block__card:hover .trips-preview-block__card-img {
    filter: grayscale(0%);
}

.trips-preview-block__card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trips-preview-block__card-title-link {
    text-decoration: none;
}

.trips-preview-block__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
    transition: color 0.2s ease;
}

.trips-preview-block__card-title-link:hover .trips-preview-block__card-title {
    color: #2563EB;
}

.trips-preview-block__rating {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    gap: 0.25rem;
}

.trips-preview-block__star {
    width: 16px;
    height: 16px;
    fill: #F59E0B;
}

.trips-preview-block__card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.trips-preview-block__price-unit {
    font-size: 0.875rem;
    font-weight: 400;
    color: #94A3B8;
}

.trips-preview-block__btn-book {
    width: 100%;
    padding: 0.75rem;
    background-color: #F1F5F9;
    border: none;
    border-radius: 8px;
    color: #0F172A;
    font-weight: 500;
    transition: background-color 0.2s ease;
    margin-top: auto;
}

.trips-preview-block__btn-book:hover {
    background-color: #E2E8F0;
}

.trips-preview-block__booking-section {
    margin-top: 5rem;
    padding: 3rem;
    background-color: #F8FAFC;
    border-radius: 12px;
}

.trips-preview-block__form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 1rem;
}

.trips-preview-block__form-desc {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trips-preview-block__selection-status {
    padding: 0.75rem 1rem;
    background: #E0F2FE;
    border-radius: 6px;
    color: #0369A1;
    font-size: 0.875rem;
}

.trips-preview-block__input,
.trips-preview-block__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: #0F172A;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.trips-preview-block__input:focus,
.trips-preview-block__textarea:focus {
    outline: none;
    border-color: #2563EB;
}

.trips-preview-block__textarea {
    min-height: 120px;
    resize: vertical;
}

.trips-preview-block__btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #0F172A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.trips-preview-block__btn-submit:hover {
    background-color: #1E40AF;
}

@media (max-width: 991px) {
    .trips-preview-block {
        padding: 5rem 0;
    }

    .trips-preview-block__booking-section {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .trips-preview-block__heading {
        font-size: 1.5rem;
    }

    .trips-preview-block__subheading {
        font-size: 1rem;
    }
}

/* ===== articles-preview ===== */
.articles-preview {
    padding: 8rem 0;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.articles-preview-title {
    color: #0F172A;
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.articles-preview-subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #E2E8F0;
    color: #475569;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.filter-btn.active {
    background-color: #0F172A;
    color: #FFFFFF;
    border-color: #0F172A;
}

.filter-btn:hover:not(.active) {
    background-color: rgba(15, 23, 42, 0.04);
    border-color: #334155;
}

.article-card {
    height: 100%;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: border-color 0.2s;
}

.article-card:hover {
    border-color: #0F172A;
}

.article-img-link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.article-card:hover .article-img {
    filter: grayscale(0%);
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    font-size: 0.75rem;
    color: #94A3B8;
}

.article-meta .icon {
    width: 14px;
    height: 14px;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.article-title-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s;
}

.article-title-link:hover {
    color: #2563EB;
}

.btn-article {
    margin-top: auto;
    color: #0F172A;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    border: 1px solid #E2E8F0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
}

.btn-article:hover {
    background-color: #0F172A;
    color: #FFFFFF;
}

.btn-view-all {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-view-all:hover {
    background-color: #1E40AF;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .articles-preview {
        padding: 4rem 0;
    }

    .articles-preview-title {
        font-size: 1.75rem;
    }

    .filter-tabs {
        width: 100%;
    }

    .filter-btn {
        flex-grow: 1;
        text-align: center;
    }
}

/* ===== footer ===== */
.hovrako-footer {
    background-color: #0F172A;
    color: #94A3B8;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.hovrako-footer .footer-logo {
    max-width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hovrako-footer .footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94A3B8;
}

.hovrako-footer .footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hovrako-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.hovrako-footer .footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.hovrako-footer .footer-links a:hover {
    color: #2563EB;
}

.hovrako-footer .footer-contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hovrako-footer .footer-contact a:hover {
    color: #2563EB;
}

.hovrako-footer .icon-svg {
    width: 20px;
    height: 20px;
    color: #2563EB;
    flex-shrink: 0;
}

.hovrako-footer .footer-newsletter-form .form-control {
    background-color: #1E293B;
    border: 1px solid #334155;
    color: #FFFFFF;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.hovrako-footer .footer-newsletter-form .form-control::placeholder {
    color: #64748B;
}

.hovrako-footer .footer-newsletter-form .form-control:focus {
    background-color: #1E293B;
    border-color: #2563EB;
    box-shadow: none;
    color: #FFFFFF;
}

.hovrako-footer .btn-primary {
    background-color: #2563EB;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.hovrako-footer .btn-primary:hover {
    background-color: #1E40AF;
}

.hovrako-footer .footer-bottom {
    border-color: #1E293B !important;
}

.hovrako-footer .copyright-text {
    font-size: 0.875rem;
}

.hovrako-footer .footer-legal-links .list-inline-item {
    margin-right: 1.5rem;
}

.hovrako-footer .footer-legal-links .list-inline-item:last-child {
    margin-right: 0;
}

.hovrako-footer .footer-legal-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.hovrako-footer .footer-legal-links a:hover {
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .hovrako-footer .footer-legal-links .list-inline-item {
        margin: 0.5rem 0.75rem;
        display: inline-block;
    }

    .hovrako-footer .footer-legal-links a {
        font-size: 0.75rem;
    }
}

.hovrako-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.hovrako-header .navbar {
    padding: 0.75rem 0;
    background-color: #FFFFFF;
}

.hovrako-header .hovrako-brand-logo {
    max-width: 40px;
    height: auto;
    object-fit: contain;
}

.hovrako-header .hovrako-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.hovrako-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
}

.hovrako-header .nav-link:hover {
    color: #2563EB;
}

.hovrako-header .hovrako-btn-primary {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hovrako-header .hovrako-btn-primary:hover {
    background-color: #1E40AF;
    color: #FFFFFF;
}

.hovrako-category-hero {
    background-color: #0F172A;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hovrako-category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('graphics/graphics/corporate-travel-logistics.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%);
}

.hovrako-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

.hovrako-hero-subtitle {
    font-size: 1.125rem;
    color: #94A3B8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.hovrako-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.hovrako-filter-bar .form-control,
.hovrako-filter-bar .form-select {
    border-color: #E2E8F0;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

.hovrako-filter-bar .form-control::placeholder {
    color: #94A3B8;
}

.hovrako-item-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #FFFFFF;
}

.hovrako-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

.hovrako-item-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hovrako-item-card:hover img {
    transform: scale(1.05);
}

.hovrako-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFFFFF;
    color: #0F172A;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hovrako-rating {
    color: #F59E0B;
    font-weight: 600;
    font-size: 0.875rem;
}

.hovrako-rating svg {
    width: 16px;
    height: 16px;
}

.hovrako-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.3;
}

.hovrako-card-text {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
}

.hovrako-btn-primary {
    background: #2563EB;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.hovrako-btn-primary:hover {
    background: #1E40AF;
    color: #FFFFFF;
}

.hovrako-btn-secondary {
    background: #F1F5F9;
    color: #0F172A;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hovrako-btn-secondary:hover {
    background: #E2E8F0;
}

.hovrako-form-card .form-control {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.hovrako-form-card .form-control:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.hovrako-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.hovrako-footer {
    background-color: #0F172A;
    color: #94A3B8;
}

.hovrako-footer .footer-heading {
    color: #FFFFFF !important;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hovrako-footer .footer-links a,
.hovrako-footer .footer-contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.hovrako-footer .footer-links a:hover,
.hovrako-footer .footer-contact a:hover {
    color: #2563EB;
}

.hovrako-footer .icon-svg {
    color: #2563EB;
}

@media (max-width: 768px) {
    .hovrako-hero-title {
        font-size: 1.75rem;
    }

    .hovrako-item-card img {
        height: 200px;
    }
}


/* ===== PAGE: articles ===== */
.articles-grid-section {
  background-color: #FFFFFF;
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.articles-grid-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.articles-grid-desc {
  color: #475569;
  max-width: 600px;
  font-size: 1.125rem;
}

.articles-grid-filters button {
  background: none;
  border: 1px solid #E2E8F0;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.articles-grid-filters button.active,
.articles-grid-filters button:hover {
  border-color: #0F172A;
  color: #0F172A;
  background-color: rgba(15, 23, 42, 0.04);
}

.search-input-group {
  position: relative;
  max-width: 400px;
}

.search-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94A3B8;
}

.search-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #E2E8F0;
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  font-size: 1rem;
  color: #0F172A;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: #2563EB;
}

.article-card {
  position: relative;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.article-card:hover {
  border-color: #0F172A;
}

.article-link-overlay {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.article-img-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F1F5F9;
}

.featured .article-img-wrapper {
  aspect-ratio: 21/9;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.article-card:hover .article-img {
  filter: grayscale(0%);
}

.article-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-badge {
  background: #F1F5F9;
  color: #0F172A;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-date {
  font-size: 0.875rem;
  color: #94A3B8;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.featured .article-title {
  font-size: 1.75rem;
}

.article-excerpt {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0F172A;
}

.article-share-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-label {
  font-size: 0.75rem;
  color: #94A3B8;
}

.share-link {
  font-size: 0.75rem;
  color: #2563EB;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .featured .article-img-wrapper {
    aspect-ratio: 16/9;
  }
  .featured .article-title {
    font-size: 1.5rem;
  }
  .articles-grid-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* ===== PAGE: contact ===== */
.contact-info-section { background-color: #FFFFFF; font-family: 'Inter', sans-serif; }
.contact-info-section .contact-details-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}
.contact-info-section .contact-form-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}
.contact-info-section .section-heading {
  color: #0F172A;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact-info-section .text-accent { color: #2563EB; }
.contact-info-section .text-secondary { color: #475569; }
.contact-info-section .small-text { font-size: 0.875rem; letter-spacing: 0.05em; }
.contact-info-section .icon-box svg {
  width: 24px;
  height: 24px;
  color: #2563EB;
}
.contact-info-section .info-label {
  font-size: 1rem;
  font-weight: 600;
  color: #0F172A;
}
.contact-info-section .info-value {
  font-size: 1rem;
  transition: color 0.2s ease;
}
.contact-info-section a.info-value:hover {
  color: #2563EB !important;
}
.contact-info-section .whatsapp-link:hover {
  text-decoration: underline !important;
}
.contact-info-section .form-label {
  font-size: 0.9rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.contact-info-section .form-control {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #0F172A;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-info-section .form-control:focus {
  background-color: #FFFFFF;
  border-color: #2563EB;
  box-shadow: none;
}
.contact-info-section .form-control::placeholder {
  color: #94A3B8;
}
.contact-info-section .btn-primary {
  background-color: #0F172A;
  border: none;
  padding: 1rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.contact-info-section .btn-primary:hover {
  background-color: #1E293B;
}
@media (max-width: 767.98px) {
  .contact-info-section .section-heading { font-size: 1.75rem; }
  .contact-info-section .contact-details-card, .contact-info-section .contact-form-card {
    padding: 2rem 1.5rem !important;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-content {
  font-family: 'Inter', sans-serif;
  color: #334155;
  line-height: 1.6;
}

.privacy-content h1,
.privacy-content h2 {
  color: #0F172A;
  font-weight: 700;
}

.privacy-sidebar {
  padding: 2rem;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  top: 100px;
}

.privacy-sidebar .nav-link {
  color: #475569;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease;
}

.privacy-sidebar .nav-link:hover {
  color: #2563EB;
}

.privacy-sidebar .nav-link.active {
  color: #2563EB;
  font-weight: 600;
}

.privacy-icon {
  width: 40px;
  height: 40px;
  background: #F1F5F9;
  color: #2563EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-icon svg {
  width: 20px;
  height: 20px;
}

.privacy-list {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.privacy-list li {
  margin-bottom: 0.75rem;
  position: relative;
  list-style: none;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: #2563EB;
  border-radius: 50%;
}

.privacy-contact-box {
  border-color: #E2E8F0 !important;
}

@media (max-width: 991px) {
  .privacy-content {
    padding-top: 3rem !important;
  }
  .privacy-content h1 {
    font-size: 1.75rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-content {
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  background-color: #FFFFFF;
}

.terms-content .terms-sidebar {
  border-right: 1px solid #E2E8F0;
  padding-right: 2rem;
}

@media (max-width: 991.98px) {
  .terms-content .terms-sidebar {
    border-right: none;
    padding-right: 0;
    margin-bottom: 3rem;
    position: static !important;
  }
}

.terms-content .terms-sidebar-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-content .nav-link {
  color: #64748B;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.terms-content .nav-link:hover {
  color: #2563EB;
}

.terms-content .nav-link.active {
  color: #2563EB;
  font-weight: 600;
}

.terms-content h2 {
  color: #0F172A;
  font-weight: 700;
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 0.75rem;
}

.terms-content p {
  line-height: 1.7;
  color: #475569;
}

.terms-content .terms-list {
  padding-left: 1.25rem;
  list-style-type: disc;
  color: #475569;
}

.terms-content .terms-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.terms-content .terms-section {
  scroll-margin-top: 120px;
}

/* ===== PAGE: cookies ===== */
.cookies-content-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Inter', sans-serif;
}

.cookies-content-section .cookies-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}

.cookies-content-section .cookies-title {
  color: #0F172A;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cookies-content-section .cookies-text {
  line-height: 1.6;
  color: #475569;
  font-size: 1rem;
}

.cookies-content-section .cookie-type-item {
  background: #F1F5F9;
  border-radius: 12px;
  height: 100%;
  transition: border-color 0.2s ease;
  border: 1px solid transparent;
}

.cookies-content-section .cookie-type-item:hover {
  border-color: #2563EB;
}

.cookies-content-section .icon-box {
  width: 40px;
  height: 40px;
  color: #2563EB;
}

.cookies-content-section .icon-svg {
  width: 100%;
  height: 100%;
}

.cookies-content-section .small-text {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.5;
}

.cookies-content-section .preference-control {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.cookies-content-section .form-check-input:checked {
  background-color: #2563EB;
  border-color: #2563EB;
}

.cookies-content-section .btn-dark {
  background-color: #0F172A;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.cookies-content-section .btn-dark:hover {
  background-color: #1E40AF;
}

@media (max-width: 768px) {
  .cookies-content-section .cookies-card {
    padding: 1.5rem !important;
  }
  .cookies-content-section .cookies-title {
    font-size: 1.25rem;
  }
}

.hov-comment-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0s;
}

.hov-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
    text-transform: uppercase;
}

.hov-avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 1.125rem;
}

.hov-avatar-primary {
    background-color: #0F172A;
    color: #FFFFFF;
}

.hov-comment-author {
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    font-size: 1.125rem;
    font-weight: 600;
}

.hov-comment-meta {
    color: #64748B;
    font-size: 0.875rem;
    display: block;
}

.hov-comment-date {
    color: #94A3B8;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hov-comment-text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.hov-btn-action {
    background: transparent;
    border: none;
    padding: 0;
    color: #2563EB;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.hov-btn-action:hover {
    color: #1E40AF;
    text-decoration: underline;
}

.hov-comment-reply-container {
    position: relative;
    margin-top: -16px;
    padding-top: 16px;
}

.hov-comment-reply-container::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 24px;
    width: 1px;
    background-color: #E2E8F0;
}

.hov-reply-comment {
    background-color: #F8FAFC;
    padding: 20px;
    border: 1px solid #E2E8F0;
}

.hov-avatar-md {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
}

.hov-avatar-secondary {
    background-color: #334155;
    color: #FFFFFF;
}

.hov-comment-author-small {
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    font-size: 1rem;
    font-weight: 600;
}

.hov-comment-text-small {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.5;
}


/* ===== PAGE TEMPLATE: corporate-directions ===== */
.hov-detail-page {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.hov-detail-hero {
    min-height: 60vh !important;
    padding: 120px 0 80px 0 !important;
}

.hov-article-meta {
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
}

.hov-meta-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563EB;
}

.hov-main-text {
    line-height: 1.8;
    color: #334155;
    font-size: 1.125rem;
}

.hov-main-text h2 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.hov-main-text p {
    margin-bottom: 1.5rem;
}

.hov-main-text ul,
.hov-main-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.hov-main-text li {
    margin-bottom: 0.5rem;
}

.hovrako-btn-secondary {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.hovrako-btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #2563EB;
}

.hov-sidebar-widget {
    border: 1px solid #F1F5F9;
    border-radius: 12px;
}

.hov-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563EB;
    padding-left: 1rem;
}

.hov-recent-img {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hov-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hov-recent-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hov-recent-date {
    font-size: 0.75rem;
    color: #94A3B8;
}

.hov-comment-card {
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.hov-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
}

.hov-avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
}

.hov-avatar-md {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
}

.hov-avatar-primary {
    background-color: #2563EB;
}

.hov-avatar-secondary {
    background-color: #64748B;
}

.hov-comment-author {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
}

.hov-comment-author-small {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
}

.hov-comment-meta {
    font-size: 0.75rem;
    color: #64748B;
}

.hov-comment-date {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.hov-comment-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
}

.hov-comment-text-small {
    font-size: 0.9375rem;
    color: #334155;
    line-height: 1.5;
}

.hov-btn-action {
    background: none;
    border: none;
    padding: 0;
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.hov-btn-action:hover {
    color: #2563EB;
}

.hov-input {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #0F172A;
}

.hov-input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .hov-detail-hero {
        min-height: 40vh !important;
        padding: 100px 0 60px 0 !important;
    }

    .hov-comment-reply-container {
        ms-5: 0 !important;
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: business-trips ===== */
.hov-detail-page {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.hov-detail-hero {
    min-height: 60vh !important;
    padding: 120px 0 80px 0 !important;
}

.hov-article-meta {
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
}

.hov-meta-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563EB;
}

.hov-main-text {
    line-height: 1.8;
    color: #334155;
    font-size: 1.125rem;
}

.hov-main-text h2 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.hov-main-text p {
    margin-bottom: 1.5rem;
}

.hov-main-text ul,
.hov-main-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.hov-main-text li {
    margin-bottom: 0.5rem;
}

.hovrako-btn-secondary {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.hovrako-btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #2563EB;
}

.hov-sidebar-widget {
    border: 1px solid #F1F5F9;
    border-radius: 12px;
}

.hov-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563EB;
    padding-left: 1rem;
}

.hov-recent-img {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hov-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hov-recent-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hov-recent-date {
    font-size: 0.75rem;
    color: #94A3B8;
}

.hov-comment-card {
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.hov-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
}

.hov-avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
}

.hov-avatar-md {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
}

.hov-avatar-primary {
    background-color: #2563EB;
}

.hov-avatar-secondary {
    background-color: #64748B;
}

.hov-comment-author {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
}

.hov-comment-author-small {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
}

.hov-comment-meta {
    font-size: 0.75rem;
    color: #64748B;
}

.hov-comment-date {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.hov-comment-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
}

.hov-comment-text-small {
    font-size: 0.9375rem;
    color: #334155;
    line-height: 1.5;
}

.hov-btn-action {
    background: none;
    border: none;
    padding: 0;
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.hov-btn-action:hover {
    color: #2563EB;
}

.hov-input {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #0F172A;
}

.hov-input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .hov-detail-hero {
        min-height: 40vh !important;
        padding: 100px 0 60px 0 !important;
    }

    .hov-comment-reply-container {
        ms-5: 0 !important;
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: articles ===== */
.hov-detail-page {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.hov-detail-hero {
    min-height: 60vh !important;
    padding: 120px 0 80px 0 !important;
}

.hov-article-meta {
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
}

.hov-meta-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563EB;
}

.hov-main-text {
    line-height: 1.8;
    color: #334155;
    font-size: 1.125rem;
}

.hov-main-text h2 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.hov-main-text p {
    margin-bottom: 1.5rem;
}

.hov-main-text ul,
.hov-main-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.hov-main-text li {
    margin-bottom: 0.5rem;
}

.hovrako-btn-secondary {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.hovrako-btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #2563EB;
}

.hov-sidebar-widget {
    border: 1px solid #F1F5F9;
    border-radius: 12px;
}

.hov-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563EB;
    padding-left: 1rem;
}

.hov-recent-img {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hov-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hov-recent-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hov-recent-date {
    font-size: 0.75rem;
    color: #94A3B8;
}

.hov-comment-card {
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.hov-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
}

.hov-avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
}

.hov-avatar-md {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
}

.hov-avatar-primary {
    background-color: #2563EB;
}

.hov-avatar-secondary {
    background-color: #64748B;
}

.hov-comment-author {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
}

.hov-comment-author-small {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
}

.hov-comment-meta {
    font-size: 0.75rem;
    color: #64748B;
}

.hov-comment-date {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.hov-comment-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
}

.hov-comment-text-small {
    font-size: 0.9375rem;
    color: #334155;
    line-height: 1.5;
}

.hov-btn-action {
    background: none;
    border: none;
    padding: 0;
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.hov-btn-action:hover {
    color: #2563EB;
}

.hov-input {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #0F172A;
}

.hov-input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .hov-detail-hero {
        min-height: 40vh !important;
        padding: 100px 0 60px 0 !important;
    }

    .hov-comment-reply-container {
        ms-5: 0 !important;
        margin-left: 1.5rem !important;
    }
}
