/*
Theme Name: HourlyHotels
Theme URI: https://hourlyhotels.in
Author: HourlyHotels.in
Description: Custom WordPress theme for HourlyHotels.in
Version: 1.1
Text Domain: hourlyhotels
*/


/* =========================================================
   HOURLYHOTELS.IN
   GLOBAL VARIABLES
========================================================= */

:root {

    --hh-primary: #ff650f;
    --hh-primary-hover: #e95808;
    --hh-primary-light: #fff4ed;

    --hh-navy: #071c4b;
    --hh-navy-light: #10295f;

    --hh-text: #182033;
    --hh-muted: #697386;

    --hh-white: #ffffff;
    --hh-bg: #ffffff;
    --hh-bg-soft: #f7f8fa;

    --hh-border: #e7e9ee;
    --hh-border-dark: #d9dde5;

    --hh-success: #159447;
    --hh-success-light: #ebf8f0;

    --hh-radius-sm: 7px;
    --hh-radius: 10px;
    --hh-radius-lg: 16px;

    --hh-container: 1280px;

    --hh-shadow:
        0 5px 24px rgba(7, 28, 75, 0.09);

    --hh-shadow-hover:
        0 10px 35px rgba(7, 28, 75, 0.14);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.6;

    color: var(--hh-text);
    background: var(--hh-bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    padding-left: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

#primary {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.hh-container {
    width: calc(100% - 40px);
    max-width: var(--hh-container);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #ffffff;
    border-bottom: 1px solid var(--hh-border);
}

.site-header-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* Logo */

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: inline-flex;
    align-items: center;
}

.site-logo strong {
    display: block;

    font-size: 27px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.8px;

    color: var(--hh-navy);
}

.site-logo span {
    color: var(--hh-primary);
}


/* Main Navigation */

.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    display: flex;
    align-items: center;

    gap: 28px;

    list-style: none;

    padding: 0;
    margin: 0;
}

.main-navigation li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    display: block;

    padding: 28px 0;

    font-size: 14px;
    line-height: 1;

    font-weight: 600;

    color: var(--hh-text);

    transition: color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--hh-primary);
}


/* Header actions */

.header-actions {
    display: flex;
    align-items: center;

    gap: 20px;

    flex-shrink: 0;
}

.header-phone {
    font-size: 14px;
    font-weight: 600;

    color: var(--hh-text);

    white-space: nowrap;
}

.header-phone:hover {
    color: var(--hh-primary);
}

.header-list-hotel {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 18px;

    border: 1px solid var(--hh-primary);
    border-radius: 8px;

    color: var(--hh-primary);
    background: #ffffff;

    font-size: 14px;
    line-height: 1;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.header-list-hotel:hover {
    background: var(--hh-primary);
    color: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hh-hero {
    position: relative;

    min-height: 455px;

    padding: 58px 0 0;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 28%,
            rgba(255, 255, 255, 0.98) 36%,
            rgba(255, 255, 255, 0.86) 47%,
            rgba(255, 255, 255, 0.52) 58%,
            rgba(255, 255, 255, 0.12) 72%,
            rgba(255, 255, 255, 0.00) 100%
        ) 0 0 / 100% 100% no-repeat,
        url("assets/images/hero-hotel.png") right center / 62% 100% no-repeat,
        #f3f4f6;
}

.hh-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0) 72%,
            rgba(255,255,255,0.18) 100%
        );
}

.hh-hero-content {
    position: relative;
    z-index: 2;

    min-height: 245px;

    display: flex;
    align-items: center;
}

.hh-hero-copy {
    width: 100%;
    max-width: 620px;
}


/* Hero badge */

.hh-hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    margin-bottom: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.96);

    color: var(--hh-text);

    font-size: 12px;
    line-height: 1.3;

    font-weight: 600;

    box-shadow:
        0 2px 8px rgba(7, 28, 75, 0.04);
}


/* Hero heading */

.hh-hero h1 {
    max-width: 620px;

    margin: 0;

    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.07;

    letter-spacing: -2.3px;

    font-weight: 800;

    color: var(--hh-navy);
}

.hh-hero h1 span {
    color: var(--hh-primary);
}

.hh-hero p {
    margin: 18px 0 0;

    font-size: 18px;
    line-height: 1.5;

    color: var(--hh-text);
}


/* =========================================================
   SEARCH BOX
========================================================= */

.hh-search-box {
    position: relative;
    z-index: 20;

    width: 100%;

    padding: 18px 22px 15px;

    background: #ffffff;

    border: 1px solid var(--hh-border);
    border-radius: 15px;

    box-shadow: var(--hh-shadow);

    transform: translateY(42px);
}


/* Search tabs */

.hh-search-tabs {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-bottom: 18px;

    border-bottom: 1px solid var(--hh-border);
}

.hh-search-tabs button {
    position: relative;

    border: 0;
    outline: 0;

    padding: 0 0 11px;

    background: transparent;

    color: var(--hh-muted);

    font-size: 14px;
    font-weight: 700;
}

.hh-search-tabs button:hover {
    color: var(--hh-text);
}

.hh-search-tabs button.active {
    color: var(--hh-text);
}

.hh-search-tabs button.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 2px;

    background: var(--hh-primary);

    border-radius: 10px;
}


/* Search field grid */

.hh-search-fields {
    display: grid;

    grid-template-columns:
        minmax(190px, 1.4fr)
        minmax(150px, 1.15fr)
        minmax(145px, 1.05fr)
        minmax(140px, 1fr)
        auto;

    gap: 13px;

    align-items: end;
}

.hh-search-field {
    min-width: 0;
}

.hh-search-field label {
    display: block;

    margin-bottom: 6px;

    color: var(--hh-text);

    font-size: 12px;
    line-height: 1;

    font-weight: 700;
}

.hh-search-field input,
.hh-search-field select {
    display: block;

    width: 100%;
    height: 48px;

    margin: 0;

    padding: 0 13px;

    border: 1px solid var(--hh-border);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hh-search-field input:hover,
.hh-search-field select:hover {
    border-color: var(--hh-border-dark);
}

.hh-search-field input:focus,
.hh-search-field select:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255, 101, 15, 0.10);
}


/* Search button */

.hh-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;

    padding: 0 27px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 14px;
    line-height: 1;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 5px 12px rgba(255, 101, 15, 0.22);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hh-search-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);

    box-shadow:
        0 7px 16px rgba(255, 101, 15, 0.28);
}

.hh-search-button:active {
    transform: translateY(0);
}


/* Search note */

.hh-search-note {
    margin-top: 13px;

    color: var(--hh-muted);

    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.hh-trust-strip {
    padding: 76px 0 30px;

    background: #ffffff;

    border-bottom: 1px solid var(--hh-border);
}

.hh-trust-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    align-items: stretch;
}

.hh-trust-grid > div {
    min-width: 0;

    padding: 7px 22px;

    border-right: 1px solid var(--hh-border);
}

.hh-trust-grid > div:first-child {
    padding-left: 0;
}

.hh-trust-grid > div:last-child {
    padding-right: 0;

    border-right: 0;
}

.hh-trust-grid strong,
.hh-trust-grid span {
    display: block;
}

.hh-trust-grid strong {
    color: var(--hh-navy);

    font-size: 14px;
    line-height: 1.4;

    font-weight: 700;
}

.hh-trust-grid span {
    margin-top: 3px;

    color: var(--hh-muted);

    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   COMMON SECTION STYLES
   For upcoming homepage sections
========================================================= */

.hh-section {
    padding: 60px 0;
}

.hh-section-soft {
    background: var(--hh-bg-soft);
}

.hh-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}

.hh-section-heading h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 26px;
    line-height: 1.25;

    letter-spacing: -0.5px;
}

.hh-view-all {
    color: var(--hh-primary);

    font-size: 13px;
    font-weight: 700;
}

.hh-view-all:hover {
    text-decoration: underline;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;

    margin-top: 60px;

    padding: 55px 0 20px;

    background: var(--hh-navy);

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        minmax(250px, 1.7fr)
        repeat(3, minmax(150px, 1fr));

    gap: 50px;
}


/* Footer logo */

.footer-logo {
    margin-bottom: 18px;

    font-size: 27px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.8px;

    color: #ffffff;
}

.footer-logo span {
    color: var(--hh-primary);
}

.footer-brand p {
    max-width: 310px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.7;
}


/* Footer headings */

.footer-grid h4 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}


/* Footer links */

.footer-grid a {
    display: block;

    width: fit-content;

    margin: 8px 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.5;

    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: #ffffff;
}


/* Footer bottom */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;
    margin-top: 38px;

    border-top:
        1px solid rgba(255, 255, 255, 0.14);

    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.68);
}

.footer-legal a:hover {
    color: #ffffff;
}


/* =========================================================
   WORDPRESS DEFAULT FIXES
========================================================= */

.site-header ul,
.site-footer ul {
    list-style: none;
}

.site-header p,
.site-footer p {
    margin-top: 0;
}

.screen-reader-text {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .site-header-inner {
        gap: 18px;
    }

    .main-navigation ul {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .header-actions {
        gap: 12px;
    }

    .header-phone {
        display: none;
    }

    .hh-search-fields {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-search-button {
        width: 100%;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .hh-hero {
        min-height: 430px;

        padding-top: 45px;

        background:
            linear-gradient(
                90deg,
                #ffffff 0%,
                rgba(255,255,255,0.97) 34%,
                rgba(255,255,255,0.78) 52%,
                rgba(255,255,255,0.28) 72%,
                rgba(255,255,255,0.05) 100%
            ) 0 0 / 100% 100% no-repeat,
            url("assets/images/hero-hotel.png") right center / 72% 100% no-repeat,
            #f3f4f6;
    }

    .hh-hero-content {
        min-height: 225px;
    }

    .hh-trust-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px 0;
    }

    .hh-trust-grid > div,
    .hh-trust-grid > div:first-child,
    .hh-trust-grid > div:last-child {
        padding: 5px 20px;

        border-right: 0;
    }

    .hh-trust-grid > div:nth-child(odd) {
        padding-left: 0;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-container {
        width: calc(100% - 28px);
    }


    /* Header */

    .site-header-inner {
        min-height: 66px;

        gap: 12px;
    }

    .site-logo strong {
        font-size: 21px;
        letter-spacing: -0.5px;
    }

    .header-phone {
        display: none;
    }

    .header-list-hotel {
        min-height: 36px;

        padding: 8px 11px;

        font-size: 11px;
    }


    /* Hero */

    .hh-hero {
        min-height: auto;

        padding: 34px 0 0;

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,0.78) 0%,
                rgba(255,255,255,0.88) 42%,
                rgba(255,255,255,0.97) 72%,
                #ffffff 100%
            ) 0 0 / 100% 100% no-repeat,
            url("assets/images/hero-hotel.png") center center / cover no-repeat,
            #f7f8fa;
    }

    .hh-hero::after {
        display: none;
    }

    .hh-hero-content {
        min-height: auto;

        padding-bottom: 20px;
    }

    .hh-hero-badge {
        max-width: 100%;

        margin-bottom: 14px;

        font-size: 10px;
    }

    .hh-hero h1 {
        font-size: 38px;
        line-height: 1.08;

        letter-spacing: -1.5px;
    }

    .hh-hero p {
        margin-top: 14px;

        font-size: 15px;
    }


    /* Search */

    .hh-search-box {
        padding: 16px;

        border-radius: 12px;

        transform: translateY(24px);
    }

    .hh-search-tabs {
        gap: 22px;

        margin-bottom: 16px;
    }

    .hh-search-tabs button {
        font-size: 13px;
    }

    .hh-search-fields {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .hh-search-field input,
    .hh-search-field select {
        height: 46px;

        font-size: 14px;
    }

    .hh-search-button {
        width: 100%;
        height: 47px;
    }

    .hh-search-note {
        margin-top: 12px;

        font-size: 11px;
    }


    /* Trust */

    .hh-trust-strip {
        padding: 54px 0 28px;
    }

    .hh-trust-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px 12px;
    }

    .hh-trust-grid > div,
    .hh-trust-grid > div:first-child,
    .hh-trust-grid > div:last-child,
    .hh-trust-grid > div:nth-child(odd) {
        padding: 0;

        border: 0;
    }

    .hh-trust-grid strong {
        font-size: 12px;
    }

    .hh-trust-grid span {
        font-size: 10px;
    }


    /* Sections */

    .hh-section {
        padding: 45px 0;
    }

    .hh-section-heading {
        margin-bottom: 18px;
    }

    .hh-section-heading h2 {
        font-size: 21px;
    }


    /* Footer */

    .site-footer {
        margin-top: 45px;

        padding-top: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 10px 18px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .site-logo strong {
        font-size: 19px;
    }

    .header-list-hotel {
        padding: 7px 9px;
    }

    .hh-hero h1 {
        font-size: 34px;
    }

    .hh-trust-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   FILE 5
   HOMEPAGE HOTEL / CITY / USE CASE STYLES
========================================================= */


/* =========================================================
   POPULAR HOTEL SECTION
========================================================= */

.hh-popular-hotels {
    background: #ffffff;
}

.hh-hotel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   HOTEL CARD
========================================================= */

.hh-hotel-card {
    position: relative;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--hh-border);
    border-radius: 12px;

    box-shadow:
        0 4px 16px rgba(7, 28, 75, 0.06);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.hh-hotel-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(7, 28, 75, 0.12);
}


/* Hotel Image */

.hh-hotel-card-image {
    position: relative;

    width: 100%;
    aspect-ratio: 3 / 2;

    overflow: hidden;

    background: #eef1f5;
}

.hh-hotel-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.hh-hotel-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.hh-hotel-card:hover
.hh-hotel-card-image img {
    transform: scale(1.035);
}


/* Best Match */

.hh-best-match {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 5px 9px;

    border-radius: 5px;

    background: #7d3ac1;

    color: #ffffff;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
}


/* Favourite */

.hh-hotel-favourite {
    position: absolute;

    top: 10px;
    right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;

    background: rgba(0,0,0,.18);

    color: #ffffff;

    font-size: 22px;
    line-height: 1;

    backdrop-filter: blur(4px);
}

.hh-hotel-favourite:hover {
    background: rgba(0,0,0,.35);
}


/* Content */

.hh-hotel-card-content {
    padding: 15px;
}


/* Hotel Title */

.hh-hotel-card-title {
    min-height: 44px;

    margin: 0 0 7px;

    color: var(--hh-navy);

    font-size: 16px;
    line-height: 1.35;

    font-weight: 700;
}

.hh-hotel-card-title a:hover {
    color: var(--hh-primary);
}


/* Rating */

.hh-hotel-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 9px;

    font-size: 11px;
}

.hh-stars {
    color: #ffad0a;

    font-size: 12px;
    letter-spacing: 1px;
}

.hh-hotel-rating strong {
    color: var(--hh-success);

    font-size: 12px;
}

.hh-review-count {
    color: var(--hh-muted);

    font-size: 10px;
}


/* Location */

.hh-hotel-location,
.hh-airport-distance {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.4;
}

.hh-location-icon,
.hh-distance-icon {
    flex-shrink: 0;

    color: #536179;
}


/* =========================================================
   HOTEL PRICE
========================================================= */

.hh-hotel-card-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 12px;

    margin-top: 14px;
    padding-top: 12px;

    border-top: 1px solid var(--hh-border);
}

.hh-duration {
    color: var(--hh-muted);

    font-size: 11px;
    font-weight: 600;
}

.hh-price {
    text-align: right;
}

.hh-price strong {
    display: block;

    color: var(--hh-text);

    font-size: 19px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-price small {
    display: block;

    margin-top: 2px;

    color: var(--hh-muted);

    font-size: 9px;
}


/* =========================================================
   HOTEL BADGES
========================================================= */

.hh-hotel-badges {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    min-height: 25px;

    margin-top: 12px;
}

.hh-badge {
    display: inline-flex;
    align-items: center;

    padding: 4px 7px;

    border-radius: 4px;

    background: #f3f5f8;

    color: #536179;

    font-size: 9px;
    line-height: 1.2;

    font-weight: 600;
}

.hh-badge-verified {
    background: var(--hh-success-light);

    color: var(--hh-success);
}


/* =========================================================
   HOTEL CARD CTA
========================================================= */

.hh-hotel-card-action {
    display: flex;
    justify-content: flex-end;

    margin-top: 12px;
}

.hh-hotel-details-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 8px 14px;

    border-radius: 6px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.hh-hotel-details-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   NO HOTELS MESSAGE
========================================================= */

.hh-empty-hotels {
    padding: 45px 25px;

    text-align: center;

    border: 1px dashed var(--hh-border-dark);
    border-radius: 12px;

    background: var(--hh-bg-soft);
}

.hh-empty-hotels h3 {
    margin-bottom: 5px;

    color: var(--hh-navy);

    font-size: 19px;
}

.hh-empty-hotels p {
    margin: 0;

    color: var(--hh-muted);

    font-size: 13px;
}


/* =========================================================
   CITY GRID
========================================================= */

.hh-city-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 14px;
}


/* City Card */

.hh-city-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    box-shadow:
        0 2px 8px rgba(7, 28, 75, 0.04);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hh-city-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(7, 28, 75, 0.10);
}

.hh-city-card-image {
    width: 100%;
    aspect-ratio: 16 / 8;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dfe8f4,
            #f3e1ce
        );
}

.hh-city-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Temporary City Image Placeholder */

.hh-city-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 10px;

    color: var(--hh-navy);

    font-size: 12px;
    font-weight: 700;

    text-align: center;
}

.hh-city-card-content {
    padding: 10px 11px 11px;
}

.hh-city-card-content strong {
    display: block;

    color: var(--hh-text);

    font-size: 12px;
    line-height: 1.3;
}

.hh-city-card-content span {
    display: block;

    margin-top: 3px;

    color: var(--hh-muted);

    font-size: 10px;
}


/* =========================================================
   USE CASE GRID
========================================================= */

.hh-use-case-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 12px;
}

.hh-use-case-card {
    display: flex;
    flex-direction: column;

    min-height: 145px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.hh-use-case-card:hover {
    border-color: #ffd5bd;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(7, 28, 75, 0.08);
}


/* Use Case Icon */

.hh-use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    margin-bottom: 14px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 18px;
    line-height: 1;
}


/* Use Case Text */

.hh-use-case-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--hh-navy);

    font-size: 13px;
    line-height: 1.3;
}

.hh-use-case-card > span:last-child {
    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   HOME BENEFITS BAR
========================================================= */

.hh-home-benefits {
    padding: 0 0 60px;

    background: #ffffff;
}

.hh-home-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    overflow: hidden;

    background: var(--hh-navy);

    border-radius: 10px;
}

.hh-home-benefits-grid > div {
    position: relative;

    padding: 22px 24px;
}

.hh-home-benefits-grid > div:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 24%;
    right: 0;

    width: 1px;
    height: 52%;

    background:
        rgba(255,255,255,.17);
}

.hh-home-benefits-grid strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.4;
}

.hh-home-benefits-grid span {
    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,.68);

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-hotel-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-city-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-use-case-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    /* Section heading */

    .hh-section-heading {
        align-items: flex-end;
    }

    .hh-view-all {
        white-space: nowrap;
        font-size: 11px;
    }


    /* Hotels */

    .hh-hotel-grid {
        display: flex;

        gap: 14px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        padding-bottom: 10px;

        margin-right: -14px;

        -webkit-overflow-scrolling: touch;
    }

    .hh-hotel-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-hotel-card {
        flex:
            0 0
            min(82vw, 310px);

        scroll-snap-align: start;
    }

    .hh-hotel-card-title {
        min-height: 0;
    }


    /* City cards */

    .hh-city-grid {
        display: flex;

        gap: 11px;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-right: -14px;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;
    }

    .hh-city-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-city-card {
        flex: 0 0 145px;

        scroll-snap-align: start;
    }


    /* Use cases */

    .hh-use-case-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .hh-use-case-card {
        min-height: 135px;

        padding: 14px;
    }


    /* Benefits */

    .hh-home-benefits {
        padding-bottom: 45px;
    }

    .hh-home-benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-home-benefits-grid > div {
        padding: 18px;
    }

    .hh-home-benefits-grid > div::after {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-use-case-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hh-use-case-card {
        min-height: 128px;
    }

    .hh-use-case-card strong {
        font-size: 12px;
    }

    .hh-use-case-card > span:last-child {
        font-size: 9px;
    }

}


/* =========================================================
   END FILE 5
========================================================= */

/* =========================================================
   FILE 7
   SINGLE HOTEL DETAIL PAGE
========================================================= */


/* =========================================================
   BREADCRUMBS
========================================================= */

.hh-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    padding: 18px 0;

    color: var(--hh-muted);

    font-size: 12px;
}

.hh-breadcrumbs a:hover {
    color: var(--hh-primary);
}


/* =========================================================
   TOP HOTEL AREA
========================================================= */

.hh-hotel-top {
    padding-bottom: 28px;
}

.hh-hotel-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
    align-items: start;
}


/* =========================================================
   HOTEL GALLERY
========================================================= */

.hh-hotel-gallery {
    min-width: 0;
}

.hh-hotel-main-image {
    position: relative;

    overflow: hidden;

    min-height: 410px;

    border-radius: 14px;

    background: #eef1f4;

    box-shadow:
        0 5px 20px rgba(7, 28, 75, 0.06);
}

.hh-hotel-main-image img {
    width: 100%;
    height: 100%;

    min-height: 410px;

    object-fit: cover;
}

.hh-detail-verified-badge {
    position: absolute;

    left: 16px;
    bottom: 16px;

    display: inline-flex;
    align-items: center;

    padding: 7px 11px;

    border-radius: 6px;

    background: rgba(21, 148, 71, 0.94);

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   BOOKING SIDEBAR
========================================================= */

.hh-hotel-booking-card {
    position: sticky;
    top: 95px;

    padding: 22px;

    border: 1px solid var(--hh-border);
    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(7, 28, 75, 0.09);
}

.hh-booking-duration {
    color: var(--hh-muted);

    font-size: 12px;
    font-weight: 700;
}

.hh-booking-price {
    margin-top: 5px;

    color: var(--hh-navy);

    font-size: 30px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-booking-price-text {
    margin-top: 7px;

    color: var(--hh-navy);

    font-size: 18px;
    line-height: 1.4;

    font-weight: 700;
}

.hh-booking-tax {
    margin-top: 3px;

    color: var(--hh-muted);

    font-size: 10px;
}


/* Booking Buttons */

.hh-detail-primary-button,
.hh-detail-secondary-button,
.hh-detail-whatsapp-button,
.hh-detail-text-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 43px;

    margin-top: 12px;

    padding: 10px 14px;

    border-radius: 7px;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.hh-detail-primary-button {
    border: 1px solid var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}

.hh-detail-primary-button:hover {
    background: var(--hh-primary-hover);

    border-color: var(--hh-primary-hover);
}

.hh-detail-secondary-button {
    border: 1px solid var(--hh-border-dark);

    background: #ffffff;

    color: var(--hh-text);
}

.hh-detail-secondary-button:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);
}

.hh-detail-whatsapp-button {
    border: 1px solid #23a455;

    background: #effbf4;

    color: #13823f;
}

.hh-detail-whatsapp-button:hover {
    background: #23a455;

    color: #ffffff;
}

.hh-detail-text-button {
    min-height: auto;

    margin-top: 11px;
    padding: 7px;

    border: 0;

    background: transparent;

    color: var(--hh-muted);
}

.hh-detail-text-button:hover {
    color: var(--hh-primary);
}


/* =========================================================
   MAIN INFORMATION LAYOUT
========================================================= */

.hh-hotel-information {
    padding-bottom: 70px;
}

.hh-hotel-info-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
}

.hh-hotel-info-main {
    min-width: 0;
}


/* =========================================================
   HOTEL TITLE
========================================================= */

.hh-hotel-title-block {
    padding-bottom: 20px;
}

.hh-hotel-title-block h1 {
    margin: 0 0 8px;

    color: var(--hh-navy);

    font-size: 32px;
    line-height: 1.2;

    letter-spacing: -0.8px;
}

.hh-detail-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 9px;

    font-size: 12px;
}

.hh-detail-stars {
    color: #ffad0a;

    letter-spacing: 1px;
}

.hh-detail-rating strong {
    color: var(--hh-success);

    font-size: 13px;
}

.hh-detail-rating > span:not(.hh-detail-stars):not(.hh-inline-verified) {
    color: var(--hh-muted);
}

.hh-inline-verified {
    display: inline-flex;
    align-items: center;

    padding: 4px 7px;

    border-radius: 4px;

    background: var(--hh-success-light);

    color: var(--hh-success);

    font-size: 10px;
    font-weight: 700;
}

.hh-detail-location {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    color: var(--hh-muted);

    font-size: 12px;
}


/* =========================================================
   QUICK FEATURES
========================================================= */

.hh-detail-quick-features {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;
}

.hh-detail-quick-features span {
    display: inline-flex;
    align-items: center;

    padding: 7px 10px;

    border-radius: 6px;

    background: #f6f8fa;

    color: #435068;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   DETAIL TABS
========================================================= */

.hh-detail-tabs {
    display: flex;
    align-items: center;

    gap: 24px;

    overflow-x: auto;

    margin-bottom: 28px;

    border-bottom: 1px solid var(--hh-border);

    scrollbar-width: none;
}

.hh-detail-tabs::-webkit-scrollbar {
    display: none;
}

.hh-detail-tabs a {
    flex-shrink: 0;

    padding: 0 0 12px;

    color: var(--hh-muted);

    font-size: 12px;
    font-weight: 700;

    border-bottom: 2px solid transparent;
}

.hh-detail-tabs a:first-child,
.hh-detail-tabs a:hover {
    color: var(--hh-primary);

    border-bottom-color: var(--hh-primary);
}


/* =========================================================
   DETAIL SECTIONS
========================================================= */

.hh-detail-section {
    padding: 28px 0;

    border-bottom: 1px solid var(--hh-border);
}

.hh-detail-section:first-of-type {
    padding-top: 0;
}

.hh-detail-section h2 {
    margin: 0 0 16px;

    color: var(--hh-navy);

    font-size: 20px;
    line-height: 1.3;
}

.hh-detail-description {
    color: #445067;

    font-size: 14px;
    line-height: 1.75;
}

.hh-detail-description p:last-child {
    margin-bottom: 0;
}

.hh-detail-muted {
    margin: 0;

    color: var(--hh-muted);

    font-size: 13px;
}


/* =========================================================
   HOURLY TABLE
========================================================= */

.hh-hourly-table-wrap {
    overflow-x: auto;

    border: 1px solid var(--hh-border);
    border-radius: 10px;
}

.hh-hourly-table {
    width: 100%;
    min-width: 650px;

    border-collapse: collapse;

    background: #ffffff;
}

.hh-hourly-table th,
.hh-hourly-table td {
    padding: 13px 15px;

    text-align: left;

    border-bottom: 1px solid var(--hh-border);

    font-size: 12px;
}

.hh-hourly-table th {
    background: #f8f9fb;

    color: var(--hh-muted);

    font-size: 11px;
    font-weight: 700;
}

.hh-hourly-table tr:last-child td {
    border-bottom: 0;
}

.hh-hourly-table td strong {
    color: var(--hh-text);
}

.hh-hourly-table td small {
    display: block;

    margin-top: 2px;

    color: var(--hh-muted);

    font-size: 9px;
}

.hh-availability-badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 8px;

    border-radius: 4px;

    background: var(--hh-success-light);

    color: var(--hh-success);

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   AMENITIES
========================================================= */

.hh-amenities-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.hh-amenity-item {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 12px 13px;

    border: 1px solid var(--hh-border);
    border-radius: 7px;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;
}

.hh-amenity-item span {
    color: var(--hh-success);

    font-weight: 800;
}


/* =========================================================
   POLICIES
========================================================= */

.hh-policy-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.hh-policy-grid > div {
    padding: 14px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #ffffff;
}

.hh-policy-grid strong {
    display: block;

    margin-bottom: 4px;

    color: var(--hh-navy);

    font-size: 12px;
}

.hh-policy-grid span {
    color: var(--hh-muted);

    font-size: 11px;
}


/* =========================================================
   USE CASE TAGS
========================================================= */

.hh-detail-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.hh-detail-tags span {
    padding: 7px 10px;

    border-radius: 20px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   INFO SIDEBAR
========================================================= */

.hh-hotel-info-sidebar {
    display: grid;

    gap: 16px;
}

.hh-info-sidebar-card {
    padding: 20px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 3px 14px rgba(7, 28, 75, 0.05);
}

.hh-info-sidebar-card h3 {
    margin: 0 0 12px;

    color: var(--hh-navy);

    font-size: 15px;
}

.hh-info-sidebar-card p {
    margin: 0;

    color: var(--hh-muted);

    font-size: 12px;
    line-height: 1.65;
}

.hh-info-sidebar-card ul {
    margin: 0;
    padding-left: 18px;
}

.hh-info-sidebar-card li {
    margin: 7px 0;

    color: #445067;

    font-size: 11px;
}

.hh-verification-card {
    border-color: #cdebd9;

    background: #f4fbf7;
}

.hh-verification-card h3 {
    color: var(--hh-success);
}

.hh-verification-card span {
    display: block;

    margin-top: 10px;

    color: var(--hh-muted);

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hh-hotel-top-grid,
    .hh-hotel-info-layout {
        grid-template-columns: 1fr;
    }

    .hh-hotel-booking-card {
        position: static;

        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .hh-booking-duration,
    .hh-booking-price,
    .hh-booking-price-text,
    .hh-booking-tax {
        grid-column: 1 / -1;
    }

    .hh-detail-text-button {
        grid-column: 1 / -1;
    }

    .hh-hotel-info-sidebar {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-breadcrumbs {
        padding: 14px 0;

        font-size: 10px;
    }

    .hh-hotel-main-image {
        min-height: 260px;

        border-radius: 10px;
    }

    .hh-hotel-main-image img {
        min-height: 260px;
    }

    .hh-hotel-booking-card {
        display: block;

        padding: 16px;
    }

    .hh-booking-price {
        font-size: 25px;
    }

    .hh-hotel-title-block h1 {
        font-size: 26px;
    }

    .hh-detail-location {
        flex-direction: column;

        gap: 4px;
    }

    .hh-detail-tabs {
        gap: 18px;
    }

    .hh-detail-section {
        padding: 24px 0;
    }

    .hh-detail-section h2 {
        font-size: 18px;
    }

    .hh-amenities-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-policy-grid {
        grid-template-columns: 1fr;
    }

    .hh-hotel-info-sidebar {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hh-amenities-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   END FILE 7
========================================================= */
/* =========================================================
   FILE 9
   FRONT-END HOTEL DASHBOARD
========================================================= */


/* =========================================================
   DASHBOARD PAGE
========================================================= */

.hh-dashboard-page {
    min-height: 700px;

    padding: 45px 0 80px;

    background:
        linear-gradient(
            180deg,
            #f8f9fb 0%,
            #ffffff 320px
        );
}


/* =========================================================
   DASHBOARD HEADER
========================================================= */

.hh-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 32px;
}

.hh-dashboard-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--hh-primary);

    font-size: 11px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-dashboard-header h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 34px;
    line-height: 1.15;

    letter-spacing: -0.9px;
}

.hh-dashboard-header p {
    max-width: 650px;

    margin: 9px 0 0;

    color: var(--hh-muted);

    font-size: 14px;
}


/* Add New Hotel */

.hh-dashboard-new-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 17px;

    border: 1px solid var(--hh-primary);
    border-radius: 8px;

    background: #ffffff;

    color: var(--hh-primary);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.hh-dashboard-new-button:hover {
    background: var(--hh-primary);
    color: #ffffff;
}


/* =========================================================
   SUCCESS / ERROR MESSAGES
========================================================= */

.hh-dashboard-success,
.hh-dashboard-errors {
    margin-bottom: 24px;

    padding: 14px 17px;

    border-radius: 8px;

    font-size: 12px;
    line-height: 1.6;
}

.hh-dashboard-success {
    border: 1px solid #cdebd9;

    background: #f1fbf5;

    color: #13783b;
}

.hh-dashboard-errors {
    border: 1px solid #f0caca;

    background: #fff5f5;

    color: #a12f2f;
}

.hh-dashboard-errors > div + div {
    margin-top: 5px;
}


/* =========================================================
   GENERAL DASHBOARD SECTION
========================================================= */

.hh-dashboard-section {
    margin-bottom: 30px;

    padding: 24px;

    border: 1px solid var(--hh-border);
    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 4px 18px rgba(7, 28, 75, 0.05);
}

.hh-dashboard-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.hh-dashboard-section-heading h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 19px;
}


/* =========================================================
   HOTEL LIST
========================================================= */

.hh-dashboard-hotel-list {
    display: grid;

    gap: 10px;
}

.hh-dashboard-hotel-row {
    display: grid;

    grid-template-columns:
        74px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 16px;

    padding: 12px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hh-dashboard-hotel-row:hover {
    border-color: #d7dce4;

    box-shadow:
        0 5px 16px rgba(7, 28, 75, 0.06);
}


/* Hotel Image */

.hh-dashboard-hotel-image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 74px;
    height: 58px;

    overflow: hidden;

    border-radius: 7px;

    background: #edf0f5;

    color: var(--hh-muted);

    font-size: 9px;
    font-weight: 800;
}

.hh-dashboard-hotel-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Hotel information */

.hh-dashboard-hotel-info {
    min-width: 0;
}

.hh-dashboard-hotel-info h3 {
    margin: 0 0 6px;

    color: var(--hh-navy);

    font-size: 14px;
    line-height: 1.3;
}


/* Statuses */

.hh-dashboard-statuses {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}

.hh-dashboard-statuses span {
    display: inline-flex;
    align-items: center;

    padding: 4px 7px;

    border-radius: 4px;

    background: #f1f3f6;

    color: var(--hh-muted);

    font-size: 9px;
    font-weight: 700;
}

.hh-dashboard-statuses .hh-status-live {
    background: #edf9f2;

    color: #158348;
}

.hh-dashboard-statuses .hh-status-pending {
    background: #fff7e9;

    color: #a66d00;
}

.hh-dashboard-statuses .hh-status-verified {
    background: #eef8ff;

    color: #176da2;
}


/* Actions */

.hh-dashboard-hotel-actions {
    display: flex;
    align-items: center;

    gap: 8px;
}

.hh-dashboard-hotel-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 7px 11px;

    border: 1px solid var(--hh-border);
    border-radius: 6px;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 10px;
    font-weight: 700;
}

.hh-dashboard-hotel-actions a:first-child {
    border-color: #ffd2ba;

    color: var(--hh-primary);

    background: #fff8f4;
}

.hh-dashboard-hotel-actions a:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);
}


/* Empty hotel state */

.hh-dashboard-empty {
    display: flex;
    flex-direction: column;

    padding: 32px;

    border: 1px dashed var(--hh-border-dark);
    border-radius: 9px;

    background: #fafbfc;

    text-align: center;
}

.hh-dashboard-empty strong {
    color: var(--hh-navy);

    font-size: 14px;
}

.hh-dashboard-empty span {
    margin-top: 4px;

    color: var(--hh-muted);

    font-size: 11px;
}


/* =========================================================
   FRONT-END FORM
========================================================= */

.hh-frontend-hotel-form {
    display: grid;

    gap: 22px;
}


/* =========================================================
   FORM SECTIONS
========================================================= */

.hh-dashboard-form-section {
    padding: 25px;

    border: 1px solid var(--hh-border);
    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 4px 18px rgba(7, 28, 75, 0.045);
}


/* Form Section Heading */

.hh-dashboard-form-heading {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 23px;
}

.hh-dashboard-form-heading > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 11px;
    font-weight: 800;
}

.hh-dashboard-form-heading h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 18px;
    line-height: 1.3;
}

.hh-dashboard-form-heading p {
    margin: 4px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
}


/* =========================================================
   FORM GRID
========================================================= */

.hh-dashboard-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.hh-field-full {
    grid-column: 1 / -1;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.hh-dashboard-field label {
    display: block;

    margin-bottom: 6px;

    color: #344158;

    font-size: 11px;
    font-weight: 700;
}

.hh-dashboard-field input,
.hh-dashboard-field select,
.hh-dashboard-field textarea {
    display: block;

    width: 100%;

    padding: 10px 12px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hh-dashboard-field input,
.hh-dashboard-field select {
    height: 43px;
}

.hh-dashboard-field textarea {
    resize: vertical;

    min-height: 95px;

    line-height: 1.6;
}

.hh-dashboard-field input:hover,
.hh-dashboard-field select:hover,
.hh-dashboard-field textarea:hover {
    border-color: #c8ced8;
}

.hh-dashboard-field input:focus,
.hh-dashboard-field select:focus,
.hh-dashboard-field textarea:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255,101,15,.09);
}

.hh-dashboard-field input::placeholder,
.hh-dashboard-field textarea::placeholder {
    color: #a1a9b6;
}


/* =========================================================
   FILE UPLOAD
========================================================= */

.hh-dashboard-field input[type="file"] {
    height: auto;

    padding: 12px;

    background: #fafbfc;
}

.hh-current-hotel-image {
    margin-top: 12px;
}

.hh-current-hotel-image img {
    width: 200px;
    height: 125px;

    object-fit: cover;

    border-radius: 8px;

    border: 1px solid var(--hh-border);
}


/* =========================================================
   PRICE GRID
========================================================= */

.hh-dashboard-price-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 22px;
}

.hh-dashboard-price-card {
    padding: 13px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #fafbfc;
}

.hh-dashboard-price-card strong {
    display: block;

    margin-bottom: 8px;

    color: var(--hh-navy);

    font-size: 11px;
}

.hh-dashboard-price-card label {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--hh-muted);

    font-size: 12px;
    font-weight: 700;
}

.hh-dashboard-price-card input {
    width: 100%;
    min-width: 0;

    height: 37px;

    padding: 7px 8px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 6px;

    outline: none;

    background: #ffffff;

    font-size: 12px;
}

.hh-dashboard-price-card input:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 2px rgba(255,101,15,.08);
}


/* =========================================================
   POLICY CHECKBOX GRID
========================================================= */

.hh-dashboard-checkbox-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.hh-dashboard-checkbox-grid > label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 14px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #ffffff;

    cursor: pointer;
}

.hh-dashboard-checkbox-grid input {
    flex-shrink: 0;

    margin-top: 2px;

    width: 16px;
    height: 16px;

    accent-color: var(--hh-primary);
}

.hh-dashboard-checkbox-grid span {
    display: block;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.5;
}

.hh-dashboard-checkbox-grid strong {
    display: block;

    margin-bottom: 2px;

    color: var(--hh-navy);

    font-size: 11px;
}


/* =========================================================
   AMENITIES / USE-CASE OPTIONS
========================================================= */

.hh-dashboard-option-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 9px;
}

.hh-dashboard-option-grid label {
    display: flex;
    align-items: center;

    gap: 7px;

    min-height: 41px;

    padding: 9px 11px;

    border: 1px solid var(--hh-border);
    border-radius: 7px;

    background: #ffffff;

    color: #47546a;

    font-size: 10px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.hh-dashboard-option-grid label:hover {
    border-color: #ffd4bc;

    background: #fffaf7;
}

.hh-dashboard-option-grid input {
    width: 15px;
    height: 15px;

    margin: 0;

    accent-color: var(--hh-primary);
}


/* =========================================================
   ADMIN CONTROLS
========================================================= */

.hh-admin-controls {
    border-color: #cfdff1;

    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );
}

.hh-admin-controls
.hh-dashboard-form-heading > span {
    background: #e8f2ff;

    color: #2368a2;
}


/* =========================================================
   FORM SUBMIT AREA
========================================================= */

.hh-dashboard-submit-area {
    position: sticky;

    bottom: 15px;
    z-index: 40;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 10px 35px rgba(7, 28, 75, 0.14);

    backdrop-filter: blur(8px);
}

.hh-dashboard-submit-area strong {
    display: block;

    color: var(--hh-navy);

    font-size: 12px;
}

.hh-dashboard-submit-area span {
    display: block;

    margin-top: 2px;

    color: var(--hh-muted);

    font-size: 10px;
}

.hh-dashboard-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 145px;
    min-height: 43px;

    padding: 10px 18px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 5px 13px rgba(255,101,15,.22);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.hh-dashboard-submit-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   PARTNER LOGIN
========================================================= */

.hh-dashboard-login {
    width: 100%;
    max-width: 470px;

    margin: 50px auto;

    padding: 30px;

    border: 1px solid var(--hh-border);
    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(7, 28, 75, 0.08);
}

.hh-dashboard-login h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 27px;

    text-align: center;
}

.hh-dashboard-login > p {
    margin: 8px auto 24px;

    color: var(--hh-muted);

    font-size: 12px;

    text-align: center;
}

.hh-dashboard-login form p {
    margin-bottom: 14px;
}

.hh-dashboard-login label {
    display: block;

    margin-bottom: 5px;

    color: var(--hh-text);

    font-size: 11px;
    font-weight: 700;
}

.hh-dashboard-login input[type="text"],
.hh-dashboard-login input[type="password"] {
    width: 100%;
    height: 43px;

    padding: 9px 11px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;
}

.hh-dashboard-login input[type="text"]:focus,
.hh-dashboard-login input[type="password"]:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255,101,15,.08);
}

.hh-dashboard-login .login-remember label {
    display: flex;
    align-items: center;

    gap: 6px;

    font-weight: 500;
}

.hh-dashboard-login input[type="checkbox"] {
    accent-color: var(--hh-primary);
}

.hh-dashboard-login input[type="submit"] {
    width: 100%;
    min-height: 43px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.hh-dashboard-login input[type="submit"]:hover {
    background: var(--hh-primary-hover);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .hh-dashboard-price-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-dashboard-option-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .hh-dashboard-page {
        padding-top: 30px;
    }

    .hh-dashboard-header {
        flex-direction: column;
    }

    .hh-dashboard-header h1 {
        font-size: 29px;
    }

    .hh-dashboard-form-grid {
        grid-template-columns: 1fr;
    }

    .hh-field-full {
        grid-column: auto;
    }

    .hh-dashboard-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .hh-dashboard-option-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hh-dashboard-page {
        padding:
            24px 0
            55px;
    }


    /* Header */

    .hh-dashboard-header {
        margin-bottom: 24px;
    }

    .hh-dashboard-header h1 {
        font-size: 25px;
    }

    .hh-dashboard-header p {
        font-size: 12px;
    }


    /* Main sections */

    .hh-dashboard-section,
    .hh-dashboard-form-section {
        padding: 17px;

        border-radius: 10px;
    }


    /* Hotel list */

    .hh-dashboard-hotel-row {
        grid-template-columns:
            62px
            minmax(0, 1fr);

        gap: 12px;
    }

    .hh-dashboard-hotel-image {
        width: 62px;
        height: 52px;
    }

    .hh-dashboard-hotel-actions {
        grid-column: 1 / -1;

        padding-top: 2px;
    }

    .hh-dashboard-hotel-actions a {
        flex: 1;
    }


    /* Form heading */

    .hh-dashboard-form-heading {
        gap: 10px;

        margin-bottom: 18px;
    }

    .hh-dashboard-form-heading > span {
        width: 30px;
        height: 30px;
    }

    .hh-dashboard-form-heading h2 {
        font-size: 16px;
    }


    /* Price */

    .hh-dashboard-price-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    /* Options */

    .hh-dashboard-option-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* Sticky save */

    .hh-dashboard-submit-area {
        bottom: 8px;

        flex-direction: column;
        align-items: stretch;

        padding: 13px;
    }

    .hh-dashboard-submit-button {
        width: 100%;
    }


    /* Login */

    .hh-dashboard-login {
        margin: 25px auto;

        padding: 22px 18px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hh-dashboard-price-grid {
        grid-template-columns: 1fr;
    }

    .hh-dashboard-option-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   END FILE 9
========================================================= */
/* =========================================================
   FILE 11
   HOTEL SEARCH RESULTS PAGE
========================================================= */


/* =========================================================
   SEARCH PAGE
========================================================= */

.hh-search-page {
    min-height: 700px;

    padding-bottom: 75px;

    background: #f7f8fa;
}


/* =========================================================
   SEARCH PAGE TOP
========================================================= */

.hh-search-page-top {
    padding: 34px 0 25px;

    background: #ffffff;

    border-bottom: 1px solid var(--hh-border);
}

.hh-search-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 22px;
}

.hh-search-eyebrow {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.hh-search-page-heading h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 30px;
    line-height: 1.2;

    letter-spacing: -0.7px;
}

.hh-search-page-heading p {
    margin: 7px 0 0;

    color: var(--hh-muted);

    font-size: 12px;
}


/* =========================================================
   RESULTS SEARCH BAR
========================================================= */

.hh-results-search-box {
    display: grid;

    grid-template-columns:
        minmax(190px, 1.5fr)
        minmax(145px, 1fr)
        minmax(135px, .9fr)
        minmax(125px, .8fr)
        auto;

    gap: 11px;

    align-items: end;

    padding: 16px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 5px 20px rgba(7, 28, 75, 0.06);
}

.hh-results-search-field {
    min-width: 0;
}

.hh-results-search-field label {
    display: block;

    margin-bottom: 6px;

    color: #364259;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
}

.hh-results-search-field input,
.hh-results-search-field select {
    display: block;

    width: 100%;
    height: 44px;

    padding: 0 11px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.hh-results-search-field input:focus,
.hh-results-search-field select:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255, 101, 15, .08);
}


/* Search Button */

.hh-results-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;

    padding: 0 23px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 5px 12px rgba(255, 101, 15, .2);

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-results-search-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   SEARCH SUMMARY
========================================================= */

.hh-search-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 13px;
}

.hh-search-summary > span {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 5px 9px;

    border: 1px solid var(--hh-border);
    border-radius: 20px;

    background: #f8f9fb;

    color: #4c586d;

    font-size: 10px;
    font-weight: 600;
}

.hh-search-summary small {
    color: var(--hh-muted);

    font-size: 9px;
}


/* =========================================================
   SEARCH BODY LAYOUT
========================================================= */

.hh-search-layout {
    display: grid;

    grid-template-columns:
        245px
        minmax(0, 1fr);

    gap: 24px;

    align-items: start;

    padding-top: 28px;
}


/* =========================================================
   FILTER SIDEBAR
========================================================= */

.hh-search-sidebar {
    position: sticky;

    top: 95px;

    min-width: 0;
}

.hh-filter-form {
    overflow: hidden;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 4px 17px rgba(7, 28, 75, .045);
}


/* Filter heading */

.hh-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-bottom: 14px;

    border-bottom: 1px solid var(--hh-border);
}

.hh-filter-heading h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 16px;
}

.hh-filter-heading a {
    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 700;
}

.hh-filter-heading a:hover {
    text-decoration: underline;
}


/* =========================================================
   FILTER GROUPS
========================================================= */

.hh-filter-group {
    padding: 18px 0;

    border-bottom: 1px solid var(--hh-border);
}

.hh-filter-group h3 {
    margin: 0 0 12px;

    color: var(--hh-text);

    font-size: 11px;
    font-weight: 800;
}

.hh-filter-label {
    display: block;

    margin-bottom: 7px;

    color: var(--hh-muted);

    font-size: 9px;
}

.hh-filter-group select {
    width: 100%;
    height: 39px;

    padding: 0 9px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 6px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 10px;
}

.hh-filter-group select:focus {
    border-color: var(--hh-primary);
}


/* =========================================================
   FILTER CHECKBOXES
========================================================= */

.hh-filter-checkbox {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 10px 0;

    color: #4a576d;

    font-size: 10px;

    cursor: pointer;
}

.hh-filter-checkbox input {
    width: 15px;
    height: 15px;

    margin: 0;

    flex-shrink: 0;

    accent-color: var(--hh-primary);
}

.hh-filter-checkbox span {
    line-height: 1.35;
}


/* =========================================================
   FILTER BUTTON
========================================================= */

.hh-filter-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 40px;

    margin-top: 17px;

    padding: 0 12px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    transition:
        background .2s ease;
}

.hh-filter-submit:hover {
    background: var(--hh-primary-hover);
}


/* =========================================================
   SEARCH RESULTS COLUMN
========================================================= */

.hh-search-results {
    min-width: 0;
}


/* =========================================================
   RESULTS TOOLBAR
========================================================= */

.hh-results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    min-height: 48px;

    margin-bottom: 15px;

    padding: 10px 14px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #ffffff;
}

.hh-results-toolbar > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}

.hh-results-toolbar strong {
    color: var(--hh-navy);

    font-size: 12px;
}

.hh-results-toolbar span {
    color: var(--hh-muted);

    font-size: 9px;
}


/* =========================================================
   MOBILE FILTER BUTTON
========================================================= */

.hh-mobile-filter-button {
    display: none;

    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 7px 12px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 6px;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   SEARCH HOTEL GRID
========================================================= */

.hh-search-hotel-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;
}


/*
 * Slightly compact search cards.
 */

.hh-search-hotel-grid .hh-hotel-card-content {
    padding: 13px;
}

.hh-search-hotel-grid .hh-hotel-card-title {
    font-size: 14px;
}

.hh-search-hotel-grid .hh-price strong {
    font-size: 17px;
}


/* =========================================================
   EMPTY SEARCH STATE
========================================================= */

.hh-search-empty {
    padding: 65px 30px;

    border: 1px solid var(--hh-border);
    border-radius: 12px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 4px 17px rgba(7, 28, 75, .04);
}

.hh-search-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 25px;
}

.hh-search-empty h2 {
    margin: 0 0 8px;

    color: var(--hh-navy);

    font-size: 20px;
}

.hh-search-empty p {
    max-width: 500px;

    margin: 5px auto;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.6;
}

.hh-search-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    margin-top: 18px;

    padding: 8px 15px;

    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   PAGINATION
========================================================= */

.hh-search-pagination {
    margin-top: 28px;
}

.hh-search-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 6px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.hh-search-pagination li {
    margin: 0;
}

.hh-search-pagination a,
.hh-search-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 34px;
    height: 34px;

    padding: 0 9px;

    border: 1px solid var(--hh-border);
    border-radius: 6px;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 10px;
    font-weight: 600;
}

.hh-search-pagination a:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);
}

.hh-search-pagination .current {
    border-color: var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1150px) {

    .hh-search-hotel-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .hh-results-search-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-results-search-button {
        width: 100%;
    }

    .hh-search-layout {
        grid-template-columns: 215px minmax(0, 1fr);

        gap: 18px;
    }

}


/* =========================================================
   MOBILE FILTER LAYOUT
========================================================= */

@media (max-width: 767px) {

    .hh-search-page {
        padding-bottom: 55px;
    }


    /* Search top */

    .hh-search-page-top {
        padding: 25px 0 20px;
    }

    .hh-search-page-heading h1 {
        font-size: 24px;
    }

    .hh-search-page-heading p {
        font-size: 10px;
    }


    /* Search fields */

    .hh-results-search-box {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 13px;
    }

    .hh-results-search-field input,
    .hh-results-search-field select,
    .hh-results-search-button {
        height: 43px;
    }


    /* Search summary */

    .hh-search-summary {
        gap: 6px;

        margin-top: 11px;
    }

    .hh-search-summary > span {
        min-height: 25px;

        padding: 4px 8px;

        font-size: 9px;
    }

    .hh-search-summary small {
        width: 100%;

        margin-top: 2px;
    }


    /* Layout */

    .hh-search-layout {
        display: block;

        padding-top: 18px;
    }


    /* Mobile Filters */

    .hh-search-sidebar {
        position: static;

        display: none;

        margin-bottom: 15px;
    }

    .hh-search-sidebar.hh-mobile-filters-open {
        display: block;
    }

    .hh-filter-form {
        padding: 16px;
    }

    .hh-mobile-filter-button {
        display: inline-flex;
    }


    /* Toolbar */

    .hh-results-toolbar {
        margin-bottom: 12px;

        padding: 9px 11px;
    }


    /* Cards */

    .hh-search-hotel-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    /*
     * Search results use full-width hotel cards
     * instead of homepage horizontal carousel.
     */

    .hh-search-hotel-grid .hh-hotel-card {
        width: 100%;

        flex: none;
    }

}


/* =========================================================
   MOBILE HORIZONTAL HOTEL RESULT
   Gives the search page a more compact app-like card.
========================================================= */

@media (min-width: 520px) and (max-width: 767px) {

    .hh-search-hotel-grid .hh-hotel-card {
        display: grid;

        grid-template-columns:
            210px
            minmax(0, 1fr);
    }

    .hh-search-hotel-grid .hh-hotel-card-image {
        height: 100%;

        aspect-ratio: auto;
    }

    .hh-search-hotel-grid .hh-hotel-card-image img {
        min-height: 260px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hh-search-page-heading h1 {
        font-size: 22px;
    }

    .hh-results-toolbar strong {
        font-size: 11px;
    }

    .hh-search-empty {
        padding: 45px 18px;
    }

}


/* =========================================================
   END FILE 11
========================================================= */

/* =========================================================
   FILE 13
   DYNAMIC CITY PAGE
========================================================= */


/* =========================================================
   CITY PAGE
========================================================= */

.hh-city-page {
    background: #ffffff;
}


/* =========================================================
   CITY HERO
========================================================= */

.hh-city-hero {
    padding: 48px 0 52px;

    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #ffffff 48%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-city-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(340px, .8fr);

    gap: 45px;

    align-items: center;
}

.hh-city-hero-copy {
    max-width: 700px;
}

.hh-city-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-city-hero h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(38px, 4.3vw, 56px);
    line-height: 1.08;

    letter-spacing: -1.7px;
}

.hh-city-hero h1 span {
    color: var(--hh-primary);
}

.hh-city-hero-copy p {
    max-width: 660px;

    margin: 18px 0 0;

    color: #4d596d;

    font-size: 14px;
    line-height: 1.75;
}

.hh-city-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    margin-top: 22px;

    padding: 9px 17px;

    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-city-hero-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   CITY STATS
========================================================= */

.hh-city-stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(7, 28, 75, .07);
}

.hh-city-stats > div {
    min-height: 110px;

    padding: 20px;

    border-right: 1px solid var(--hh-border);
    border-bottom: 1px solid var(--hh-border);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hh-city-stats > div:nth-child(2n) {
    border-right: 0;
}

.hh-city-stats > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hh-city-stats strong {
    color: var(--hh-navy);

    font-size: 25px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-city-stats span {
    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   CITY SEARCH
========================================================= */

.hh-city-search-section {
    position: relative;
    z-index: 20;

    margin-top: -24px;
}

.hh-city-search-box {
    display: grid;

    grid-template-columns:
        minmax(170px, 1.2fr)
        minmax(145px, 1fr)
        minmax(135px, .9fr)
        minmax(125px, .8fr)
        auto;

    gap: 11px;

    align-items: end;

    padding: 16px 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(7, 28, 75, .1);
}

.hh-city-search-field {
    min-width: 0;
}

.hh-city-search-field label {
    display: block;

    margin-bottom: 6px;

    color: #364259;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
}

.hh-city-search-field input,
.hh-city-search-field select {
    width: 100%;
    height: 43px;

    padding: 0 11px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;
}

.hh-city-search-field input:focus,
.hh-city-search-field select:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255, 101, 15, .08);
}

.hh-city-search-field input[readonly] {
    background: #f7f8fa;

    color: #596579;
}

.hh-city-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 43px;

    padding: 0 22px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-city-search-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   CITY LOCALITIES
========================================================= */

.hh-city-localities {
    padding: 58px 0 5px;
}

.hh-city-locality-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.hh-city-locality-card {
    display: flex;
    flex-direction: column;

    min-height: 92px;

    padding: 15px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.hh-city-locality-card:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(7, 28, 75, .07);
}

.hh-city-locality-card strong {
    color: var(--hh-navy);

    font-size: 13px;
    line-height: 1.3;
}

.hh-city-locality-card span {
    margin-top: auto;
    padding-top: 10px;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   CITY HOTELS
========================================================= */

.hh-city-hotels {
    background: #ffffff;
}

.hh-city-section-intro {
    margin: 6px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
}

.hh-city-hotel-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CITY USE CASES
========================================================= */

.hh-city-use-case-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.hh-city-use-case-card {
    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr);

    column-gap: 10px;

    align-items: start;

    min-height: 105px;

    padding: 15px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.hh-city-use-case-card:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(7, 28, 75, .07);
}

.hh-city-use-case-card > span {
    grid-row: 1 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 13px;
    font-weight: 800;
}

.hh-city-use-case-card strong {
    color: var(--hh-navy);

    font-size: 12px;
    line-height: 1.35;
}

.hh-city-use-case-card small {
    margin-top: 4px;

    color: var(--hh-muted);

    font-size: 9px;
    line-height: 1.4;
}


/* =========================================================
   CITY CONTENT
========================================================= */

.hh-city-content {
    background: #ffffff;
}

.hh-city-content-box {
    max-width: 900px;

    margin: 0 auto;

    padding: 30px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfcfd
        );

    box-shadow:
        0 4px 18px rgba(7, 28, 75, .04);
}

.hh-city-content-box h2 {
    margin: 0 0 16px;

    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.35;
}

.hh-city-content-box p,
.hh-city-custom-description {
    color: #4e5a6e;

    font-size: 13px;
    line-height: 1.8;
}

.hh-city-content-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CITY FAQ
========================================================= */

.hh-city-faq-list {
    max-width: 920px;

    margin: 0 auto;

    display: grid;

    gap: 10px;
}

.hh-city-faq-list details {
    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;
}

.hh-city-faq-list summary {
    position: relative;

    list-style: none;

    padding: 15px 45px 15px 16px;

    color: var(--hh-navy);

    font-size: 12px;
    line-height: 1.4;

    font-weight: 700;

    cursor: pointer;
}

.hh-city-faq-list summary::-webkit-details-marker {
    display: none;
}

.hh-city-faq-list summary::after {
    content: "+";

    position: absolute;

    top: 50%;
    right: 16px;

    transform: translateY(-50%);

    color: var(--hh-primary);

    font-size: 18px;
    line-height: 1;
}

.hh-city-faq-list details[open] summary::after {
    content: "−";
}

.hh-city-faq-list details p {
    margin: 0;

    padding: 0 16px 16px;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-city-hero-grid {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(300px, .8fr);

        gap: 30px;
    }

    .hh-city-search-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-city-search-button {
        width: 100%;
    }

    .hh-city-locality-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-city-hotel-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-city-use-case-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-city-hero {
        padding:
            40px 0
            55px;
    }

    .hh-city-hero-grid {
        grid-template-columns: 1fr;
    }

    .hh-city-stats {
        max-width: 600px;
    }

    .hh-city-locality-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-city-use-case-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-city-hero {
        padding:
            32px 0
            54px;
    }

    .hh-city-hero h1 {
        font-size: 36px;
    }

    .hh-city-hero-copy p {
        font-size: 12px;
    }


    /* Stats */

    .hh-city-stats > div {
        min-height: 88px;

        padding: 15px;
    }

    .hh-city-stats strong {
        font-size: 21px;
    }

    .hh-city-stats span {
        font-size: 9px;
    }


    /* Search */

    .hh-city-search-section {
        margin-top: -20px;
    }

    .hh-city-search-box {
        grid-template-columns: 1fr;

        padding: 14px;
    }


    /* Localities */

    .hh-city-localities {
        padding-top: 46px;
    }

    .hh-city-locality-grid {
        display: flex;

        gap: 10px;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-right: -14px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .hh-city-locality-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-city-locality-card {
        flex: 0 0 180px;

        scroll-snap-align: start;
    }


    /* Hotels */

    .hh-city-hotel-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* Use Cases */

    .hh-city-use-case-grid {
        grid-template-columns: 1fr 1fr;

        gap: 9px;
    }

    .hh-city-use-case-card {
        display: flex;
        flex-direction: column;

        min-height: 130px;

        padding: 13px;
    }

    .hh-city-use-case-card > span {
        margin-bottom: 10px;
    }


    /* Content */

    .hh-city-content-box {
        padding: 21px;

        border-radius: 9px;
    }

    .hh-city-content-box h2 {
        font-size: 19px;
    }

    .hh-city-content-box p,
    .hh-city-custom-description {
        font-size: 12px;
    }


    /* FAQ */

    .hh-city-faq-list summary {
        padding:
            14px
            40px
            14px
            14px;

        font-size: 11px;
    }

    .hh-city-faq-list details p {
        padding:
            0
            14px
            14px;

        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-city-hero h1 {
        font-size: 32px;
    }

    .hh-city-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hh-city-use-case-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   END FILE 13
========================================================= */
/* =========================================================
   FILE 15
   DYNAMIC LOCALITY / AREA PAGE
========================================================= */


/* =========================================================
   LOCALITY PAGE
========================================================= */

.hh-locality-page {
    background: #ffffff;
}


/* =========================================================
   LOCALITY HERO
========================================================= */

.hh-locality-hero {
    padding: 46px 0 52px;

    background:
        linear-gradient(
            135deg,
            #fff9f5 0%,
            #ffffff 50%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-locality-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(340px, .8fr);

    gap: 45px;

    align-items: center;
}

.hh-locality-hero-copy {
    max-width: 720px;
}

.hh-locality-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-locality-hero h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(38px, 4.2vw, 55px);
    line-height: 1.08;

    letter-spacing: -1.6px;
}

.hh-locality-hero h1 span {
    color: var(--hh-primary);
}

.hh-locality-hero h1 small {
    display: block;

    margin-top: 8px;

    color: var(--hh-muted);

    font-size: 16px;
    line-height: 1.3;

    font-weight: 600;

    letter-spacing: 0;
}

.hh-locality-hero-copy p {
    max-width: 680px;

    margin: 18px 0 0;

    color: #4d596d;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   LOCALITY HERO ACTIONS
========================================================= */

.hh-locality-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.hh-locality-primary-button,
.hh-locality-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 17px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.hh-locality-primary-button {
    border: 1px solid var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}

.hh-locality-primary-button:hover {
    background: var(--hh-primary-hover);

    border-color: var(--hh-primary-hover);

    transform: translateY(-1px);
}

.hh-locality-secondary-button {
    border: 1px solid var(--hh-border-dark);

    background: #ffffff;

    color: var(--hh-text);
}

.hh-locality-secondary-button:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);

    transform: translateY(-1px);
}


/* =========================================================
   LOCALITY STATS
========================================================= */

.hh-locality-stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(7, 28, 75, .07);
}

.hh-locality-stats > div {
    min-height: 108px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--hh-border);
    border-bottom: 1px solid var(--hh-border);
}

.hh-locality-stats > div:nth-child(2n) {
    border-right: 0;
}

.hh-locality-stats > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hh-locality-stats strong {
    color: var(--hh-navy);

    font-size: 25px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-locality-stats span {
    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   LOCALITY SEARCH
========================================================= */

.hh-locality-search-section {
    position: relative;
    z-index: 20;

    margin-top: -24px;
}

.hh-locality-search-box {
    display: grid;

    grid-template-columns:
        minmax(170px, 1.2fr)
        minmax(145px, 1fr)
        minmax(135px, .9fr)
        minmax(125px, .8fr)
        auto;

    gap: 11px;

    align-items: end;

    padding: 16px 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(7, 28, 75, .10);
}

.hh-locality-search-field {
    min-width: 0;
}

.hh-locality-search-field label {
    display: block;

    margin-bottom: 6px;

    color: #364259;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
}

.hh-locality-search-field input,
.hh-locality-search-field select {
    width: 100%;
    height: 43px;

    padding: 0 11px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;
}

.hh-locality-search-field input:focus,
.hh-locality-search-field select:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255, 101, 15, .08);
}

.hh-locality-search-field input[readonly] {
    background: #f7f8fa;

    color: #596579;
}

.hh-locality-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 43px;

    padding: 0 22px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-locality-search-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   LOCALITY HOTEL SECTION
========================================================= */

.hh-locality-hotels {
    background: #ffffff;
}

.hh-locality-section-intro {
    margin: 6px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
}

.hh-locality-hotel-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   LOCALITY PRICE GRID
========================================================= */

.hh-locality-price-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.hh-locality-price-grid > a {
    display: flex;
    flex-direction: column;

    min-height: 130px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.hh-locality-price-grid > a:hover {
    border-color: #ffd4bd;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(7, 28, 75, .07);
}

.hh-locality-price-grid span {
    color: var(--hh-muted);

    font-size: 10px;
    font-weight: 700;
}

.hh-locality-price-grid strong {
    margin-top: 6px;

    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.15;

    font-weight: 800;
}

.hh-locality-price-grid small {
    margin-top: auto;
    padding-top: 15px;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   LOCALITY USE CASES
========================================================= */

.hh-locality-use-case-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.hh-locality-use-case-card {
    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr);

    column-gap: 10px;

    align-items: start;

    min-height: 105px;

    padding: 15px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.hh-locality-use-case-card:hover {
    border-color: #ffd4bd;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(7, 28, 75, .07);
}

.hh-locality-use-case-card > span {
    grid-row: 1 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 13px;
    font-weight: 800;
}

.hh-locality-use-case-card strong {
    color: var(--hh-navy);

    font-size: 12px;
    line-height: 1.35;
}

.hh-locality-use-case-card small {
    margin-top: 4px;

    color: var(--hh-muted);

    font-size: 9px;
    line-height: 1.4;
}


/* =========================================================
   LOCALITY AMENITIES
========================================================= */

.hh-locality-amenities {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.hh-locality-amenities span {
    display: inline-flex;
    align-items: center;

    min-height: 36px;

    padding: 8px 11px;

    border: 1px solid var(--hh-border);
    border-radius: 7px;

    background: #ffffff;

    color: #46536a;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   LOCALITY CONTENT
========================================================= */

.hh-locality-content {
    background: #ffffff;
}

.hh-locality-content-box {
    max-width: 900px;

    margin: 0 auto;

    padding: 30px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfcfd
        );

    box-shadow:
        0 4px 18px rgba(7, 28, 75, .04);
}

.hh-locality-content-box h2 {
    margin: 0 0 16px;

    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.35;
}

.hh-locality-content-box p,
.hh-locality-custom-description {
    color: #4e5a6e;

    font-size: 13px;
    line-height: 1.8;
}

.hh-locality-content-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-locality-hero-grid {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(300px, .8fr);

        gap: 30px;
    }

    .hh-locality-search-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-locality-search-button {
        width: 100%;
    }

    .hh-locality-hotel-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-locality-price-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-locality-use-case-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-locality-hero {
        padding:
            40px 0
            55px;
    }

    .hh-locality-hero-grid {
        grid-template-columns: 1fr;
    }

    .hh-locality-stats {
        max-width: 600px;
    }

    .hh-locality-price-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-locality-use-case-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-locality-hero {
        padding:
            32px 0
            54px;
    }

    .hh-locality-hero h1 {
        font-size: 36px;
    }

    .hh-locality-hero h1 small {
        font-size: 13px;
    }

    .hh-locality-hero-copy p {
        font-size: 12px;
    }


    /* Hero Buttons */

    .hh-locality-hero-actions {
        align-items: stretch;
    }

    .hh-locality-primary-button,
    .hh-locality-secondary-button {
        flex: 1 1 145px;
    }


    /* Stats */

    .hh-locality-stats > div {
        min-height: 88px;

        padding: 15px;
    }

    .hh-locality-stats strong {
        font-size: 21px;
    }

    .hh-locality-stats span {
        font-size: 9px;
    }


    /* Search */

    .hh-locality-search-section {
        margin-top: -20px;
    }

    .hh-locality-search-box {
        grid-template-columns: 1fr;

        padding: 14px;
    }


    /* Hotels */

    .hh-locality-hotel-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* Pricing */

    .hh-locality-price-grid {
        display: flex;

        gap: 10px;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-right: -14px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .hh-locality-price-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-locality-price-grid > a {
        flex: 0 0 190px;

        scroll-snap-align: start;
    }


    /* Use Cases */

    .hh-locality-use-case-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .hh-locality-use-case-card {
        display: flex;
        flex-direction: column;

        min-height: 130px;

        padding: 13px;
    }

    .hh-locality-use-case-card > span {
        margin-bottom: 10px;
    }


    /* Amenities */

    .hh-locality-amenities {
        gap: 7px;
    }

    .hh-locality-amenities span {
        min-height: 33px;

        padding: 7px 9px;

        font-size: 9px;
    }


    /* Content */

    .hh-locality-content-box {
        padding: 21px;

        border-radius: 9px;
    }

    .hh-locality-content-box h2 {
        font-size: 19px;
    }

    .hh-locality-content-box p,
    .hh-locality-custom-description {
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-locality-hero h1 {
        font-size: 32px;
    }

    .hh-locality-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hh-locality-use-case-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   END FILE 15
========================================================= */

/* =========================================================
   FILE 17
   DYNAMIC USE CASE PAGE
========================================================= */


/* =========================================================
   USE CASE PAGE
========================================================= */

.hh-use-case-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hh-use-case-hero {
    padding: 48px 0 54px;

    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #ffffff 50%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-use-case-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(340px, .8fr);

    gap: 45px;

    align-items: center;
}

.hh-use-case-hero-copy {
    max-width: 720px;
}

.hh-use-case-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-use-case-hero h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(38px, 4.3vw, 56px);
    line-height: 1.08;

    letter-spacing: -1.7px;
}

.hh-use-case-hero h1 span {
    color: var(--hh-primary);
}

.hh-use-case-hero-copy p {
    max-width: 680px;

    margin: 18px 0 0;

    color: #4d596d;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hh-use-case-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.hh-use-case-primary-button,
.hh-use-case-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 17px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.hh-use-case-primary-button {
    border: 1px solid var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}

.hh-use-case-primary-button:hover {
    background: var(--hh-primary-hover);

    border-color: var(--hh-primary-hover);

    transform: translateY(-1px);
}

.hh-use-case-secondary-button {
    border: 1px solid var(--hh-border-dark);

    background: #ffffff;

    color: var(--hh-text);
}

.hh-use-case-secondary-button:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);

    transform: translateY(-1px);
}


/* =========================================================
   USE CASE STATS
========================================================= */

.hh-use-case-stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(7, 28, 75, .07);
}

.hh-use-case-stats > div {
    min-height: 108px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--hh-border);
    border-bottom: 1px solid var(--hh-border);
}

.hh-use-case-stats > div:nth-child(2n) {
    border-right: 0;
}

.hh-use-case-stats > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hh-use-case-stats strong {
    color: var(--hh-navy);

    font-size: 25px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-use-case-stats span {
    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   SEARCH BAR
========================================================= */

.hh-use-case-search-section {
    position: relative;
    z-index: 20;

    margin-top: -24px;
}

.hh-use-case-search-box {
    display: grid;

    grid-template-columns:
        minmax(180px, 1.3fr)
        minmax(145px, 1fr)
        minmax(135px, .9fr)
        minmax(125px, .8fr)
        auto;

    gap: 11px;

    align-items: end;

    padding: 16px 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(7, 28, 75, .10);
}

.hh-use-case-search-field {
    min-width: 0;
}

.hh-use-case-search-field label {
    display: block;

    margin-bottom: 6px;

    color: #364259;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
}

.hh-use-case-search-field input,
.hh-use-case-search-field select {
    width: 100%;
    height: 43px;

    padding: 0 11px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;
}

.hh-use-case-search-field input:focus,
.hh-use-case-search-field select:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255, 101, 15, .08);
}

.hh-use-case-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 43px;

    padding: 0 22px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-use-case-search-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   CITY GRID
========================================================= */

.hh-use-case-cities {
    padding-top: 58px;
}

.hh-use-case-city-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.hh-use-case-city-card {
    display: flex;
    flex-direction: column;

    min-height: 95px;

    padding: 15px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hh-use-case-city-card:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(7, 28, 75, .07);
}

.hh-use-case-city-card strong {
    color: var(--hh-navy);

    font-size: 13px;
    line-height: 1.3;
}

.hh-use-case-city-card span {
    margin-top: auto;
    padding-top: 10px;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   HOTEL GRID
========================================================= */

.hh-use-case-section-intro {
    margin: 6px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
}

.hh-use-case-hotel-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   LOCALITY GRID
========================================================= */

.hh-use-case-locality-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.hh-use-case-locality-grid > a {
    display: flex;
    flex-direction: column;

    min-height: 88px;

    padding: 15px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hh-use-case-locality-grid > a:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(7, 28, 75, .07);
}

.hh-use-case-locality-grid strong {
    color: var(--hh-navy);

    font-size: 12px;
    line-height: 1.3;
}

.hh-use-case-locality-grid span {
    margin-top: auto;
    padding-top: 10px;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   PRICE GRID
========================================================= */

.hh-use-case-price-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;

    max-width: 720px;
}

.hh-use-case-price-grid > div {
    display: flex;
    flex-direction: column;

    min-height: 130px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;
}

.hh-use-case-price-grid span {
    color: var(--hh-muted);

    font-size: 10px;
    font-weight: 700;
}

.hh-use-case-price-grid strong {
    margin-top: 6px;

    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.15;

    font-weight: 800;
}

.hh-use-case-price-grid small {
    margin-top: auto;
    padding-top: 14px;

    color: var(--hh-muted);

    font-size: 9px;
    line-height: 1.4;
}


/* =========================================================
   AMENITIES
========================================================= */

.hh-use-case-amenities {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.hh-use-case-amenities span {
    display: inline-flex;
    align-items: center;

    min-height: 36px;

    padding: 8px 11px;

    border: 1px solid var(--hh-border);
    border-radius: 7px;

    background: #ffffff;

    color: #46536a;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   CONTENT BOX
========================================================= */

.hh-use-case-content-box {
    max-width: 900px;

    margin: 0 auto;

    padding: 30px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfcfd
        );

    box-shadow:
        0 4px 18px rgba(7, 28, 75, .04);
}

.hh-use-case-content-box h2 {
    margin: 0 0 16px;

    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.35;
}

.hh-use-case-content-box p,
.hh-use-case-custom-description {
    color: #4e5a6e;

    font-size: 13px;
    line-height: 1.8;
}

.hh-use-case-content-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   EMPTY HOTELS
========================================================= */

.hh-empty-hotels {
    padding: 42px 25px;

    border: 1px dashed var(--hh-border-dark);
    border-radius: 10px;

    background: #fafbfc;

    text-align: center;
}

.hh-empty-hotels h3 {
    margin: 0 0 6px;

    color: var(--hh-navy);

    font-size: 17px;
}

.hh-empty-hotels p {
    margin: 0;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-use-case-hero-grid {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(300px, .8fr);

        gap: 30px;
    }

    .hh-use-case-search-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-use-case-search-button {
        width: 100%;
    }

    .hh-use-case-city-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-use-case-hotel-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-use-case-locality-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-use-case-hero {
        padding:
            40px 0
            55px;
    }

    .hh-use-case-hero-grid {
        grid-template-columns: 1fr;
    }

    .hh-use-case-stats {
        max-width: 600px;
    }

    .hh-use-case-city-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-use-case-locality-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-use-case-hero {
        padding:
            32px 0
            54px;
    }

    .hh-use-case-hero h1 {
        font-size: 36px;
    }

    .hh-use-case-hero-copy p {
        font-size: 12px;
    }


    /* Hero Actions */

    .hh-use-case-hero-actions {
        align-items: stretch;
    }

    .hh-use-case-primary-button,
    .hh-use-case-secondary-button {
        flex: 1 1 145px;
    }


    /* Stats */

    .hh-use-case-stats > div {
        min-height: 88px;

        padding: 15px;
    }

    .hh-use-case-stats strong {
        font-size: 21px;
    }

    .hh-use-case-stats span {
        font-size: 9px;
    }


    /* Search */

    .hh-use-case-search-section {
        margin-top: -20px;
    }

    .hh-use-case-search-box {
        grid-template-columns: 1fr;

        padding: 14px;
    }


    /* Cities */

    .hh-use-case-cities {
        padding-top: 46px;
    }

    .hh-use-case-city-grid {
        display: flex;

        gap: 10px;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-right: -14px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .hh-use-case-city-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-use-case-city-card {
        flex: 0 0 180px;

        scroll-snap-align: start;
    }


    /* Hotels */

    .hh-use-case-hotel-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* Localities */

    .hh-use-case-locality-grid {
        display: flex;

        gap: 10px;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-right: -14px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .hh-use-case-locality-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-use-case-locality-grid > a {
        flex: 0 0 175px;

        scroll-snap-align: start;
    }


    /* Prices */

    .hh-use-case-price-grid {
        display: flex;

        gap: 10px;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-right: -14px;

        scrollbar-width: none;

        scroll-snap-type: x mandatory;
    }

    .hh-use-case-price-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-use-case-price-grid > div {
        flex: 0 0 190px;

        scroll-snap-align: start;
    }


    /* Amenities */

    .hh-use-case-amenities {
        gap: 7px;
    }

    .hh-use-case-amenities span {
        min-height: 33px;

        padding: 7px 9px;

        font-size: 9px;
    }


    /* Content */

    .hh-use-case-content-box {
        padding: 21px;

        border-radius: 9px;
    }

    .hh-use-case-content-box h2 {
        font-size: 19px;
    }

    .hh-use-case-content-box p,
    .hh-use-case-custom-description {
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-use-case-hero h1 {
        font-size: 32px;
    }

    .hh-use-case-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   END FILE 17
========================================================= */
/* =========================================================
   FILE 19
   CITIES DIRECTORY PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.hh-cities-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hh-cities-hero {
    padding: 48px 0 54px;

    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #ffffff 50%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-cities-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(340px, .8fr);

    gap: 45px;

    align-items: center;
}

.hh-cities-hero-copy {
    max-width: 720px;
}

.hh-cities-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-cities-hero h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(38px, 4.3vw, 56px);
    line-height: 1.08;

    letter-spacing: -1.7px;
}

.hh-cities-hero h1 span {
    color: var(--hh-primary);
}

.hh-cities-hero-copy p {
    max-width: 680px;

    margin: 18px 0 0;

    color: #4d596d;

    font-size: 14px;
    line-height: 1.75;
}

.hh-cities-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    margin-top: 22px;

    padding: 9px 18px;

    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-cities-hero-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   HERO STATS
========================================================= */

.hh-cities-stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(7, 28, 75, .07);
}

.hh-cities-stats > div {
    min-height: 108px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--hh-border);
    border-bottom: 1px solid var(--hh-border);
}

.hh-cities-stats > div:nth-child(2n) {
    border-right: 0;
}

.hh-cities-stats > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hh-cities-stats strong {
    color: var(--hh-navy);

    font-size: 25px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-cities-stats span {
    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   CITY FINDER
========================================================= */

.hh-cities-finder {
    position: relative;
    z-index: 20;

    margin-top: -24px;
}

.hh-cities-search-box {
    padding: 17px 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(7, 28, 75, .10);
}


/* Search Input */

.hh-cities-search-input {
    position: relative;

    max-width: 520px;
}

.hh-cities-search-input > span {
    position: absolute;

    top: 50%;
    left: 13px;

    transform: translateY(-50%);

    color: var(--hh-muted);

    font-size: 18px;

    pointer-events: none;
}

.hh-cities-search-input input {
    width: 100%;
    height: 44px;

    padding:
        0
        13px
        0
        40px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.hh-cities-search-input input:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255, 101, 15, .08);
}

.hh-cities-search-input input::placeholder {
    color: #9ba4b1;
}


/* =========================================================
   A-Z LETTER FILTERS
========================================================= */

.hh-cities-letter-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 14px;
}

.hh-city-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 31px;
    height: 31px;

    padding: 0 8px;

    border: 1px solid var(--hh-border);
    border-radius: 6px;

    background: #ffffff;

    color: #566175;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease;
}

.hh-city-letter:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);
}

.hh-city-letter.active {
    border-color: var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}


/* =========================================================
   DIRECTORY SECTION
========================================================= */

.hh-cities-directory {
    padding-top: 58px;
}

.hh-cities-directory-intro {
    margin: 6px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
}


/* =========================================================
   DIRECTORY GRID
========================================================= */

.hh-cities-directory-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   CITY CARD
========================================================= */

.hh-directory-city-card {
    display: flex;
    flex-direction: column;

    min-height: 270px;

    padding: 16px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 4px 15px rgba(7, 28, 75, .035);

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hh-directory-city-card:hover {
    border-color: #ffd2b9;

    transform: translateY(-3px);

    box-shadow:
        0 10px 26px rgba(7, 28, 75, .08);
}

.hh-directory-city-card[hidden] {
    display: none !important;
}


/* =========================================================
   CITY CARD TOP
========================================================= */

.hh-directory-city-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}


/* City Initial */

.hh-directory-city-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--hh-primary-light),
            #fff3eb
        );

    color: var(--hh-primary);

    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   CITY STATUS
========================================================= */

.hh-directory-status-live,
.hh-directory-status-soon {
    display: inline-flex;
    align-items: center;

    min-height: 24px;

    padding: 4px 8px;

    border-radius: 20px;

    font-size: 8px;
    font-weight: 800;
}

.hh-directory-status-live {
    background: #edf9f2;

    color: #158348;
}

.hh-directory-status-soon {
    background: #f3f4f6;

    color: #6f7888;
}


/* =========================================================
   CITY NAME
========================================================= */

.hh-directory-city-name {
    margin-top: 17px;
}

.hh-directory-city-name h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 16px;
    line-height: 1.3;
}

.hh-directory-city-name p {
    margin: 5px 0 0;

    min-height: 33px;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   CITY DETAILS
========================================================= */

.hh-directory-city-details {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 14px;
}

.hh-directory-city-details > div {
    padding: 10px;

    border-radius: 7px;

    background: #f7f8fa;
}

.hh-directory-city-details span {
    display: block;

    color: var(--hh-muted);

    font-size: 8px;
}

.hh-directory-city-details strong {
    display: block;

    margin-top: 3px;

    color: var(--hh-navy);

    font-size: 13px;
}


/* =========================================================
   CITY PRICING
========================================================= */

.hh-directory-city-price {
    display: flex;
    flex-wrap: wrap;

    gap: 5px 12px;

    margin-top: 12px;
}

.hh-directory-city-price > span {
    color: var(--hh-muted);

    font-size: 8px;
}

.hh-directory-city-price strong {
    color: var(--hh-navy);

    font-size: 10px;
}


/* =========================================================
   CITY CARD LINK
========================================================= */

.hh-directory-city-link {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    margin-top: auto;
    padding: 8px 12px;

    border: 1px solid #ffd3bb;
    border-radius: 7px;

    background: #fff8f4;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 800;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.hh-directory-city-link:hover {
    border-color: var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}


/* =========================================================
   NO SEARCH RESULTS
========================================================= */

.hh-city-directory-no-results {
    max-width: 560px;

    margin: 20px auto 0;

    padding: 45px 25px;

    border: 1px dashed var(--hh-border-dark);
    border-radius: 10px;

    background: #fafbfc;

    text-align: center;
}

.hh-city-directory-no-results[hidden] {
    display: none !important;
}

.hh-city-directory-no-results > div {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 auto 13px;

    border-radius: 50%;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 21px;
}

.hh-city-directory-no-results h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 17px;
}

.hh-city-directory-no-results p {
    max-width: 400px;

    margin: 7px auto 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.hh-cities-how-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.hh-cities-how-grid > div {
    min-height: 160px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;
}

.hh-cities-how-grid > div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 14px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 10px;
    font-weight: 800;
}

.hh-cities-how-grid h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 13px;
}

.hh-cities-how-grid p {
    margin: 7px 0 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   INFO SECTION
========================================================= */

.hh-cities-info {
    background: #ffffff;
}

.hh-cities-info-box {
    max-width: 900px;

    margin: 0 auto;

    padding: 30px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfcfd
        );

    box-shadow:
        0 4px 18px rgba(7, 28, 75, .04);
}

.hh-cities-info-box h2 {
    margin: 0 0 16px;

    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.35;
}

.hh-cities-info-box p {
    color: #4e5a6e;

    font-size: 13px;
    line-height: 1.8;
}

.hh-cities-info-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-cities-hero-grid {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(300px, .8fr);

        gap: 30px;
    }

    .hh-cities-directory-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-cities-how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-cities-hero {
        padding:
            40px 0
            55px;
    }

    .hh-cities-hero-grid {
        grid-template-columns: 1fr;
    }

    .hh-cities-stats {
        max-width: 600px;
    }

    .hh-cities-directory-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-cities-hero {
        padding:
            32px 0
            54px;
    }

    .hh-cities-hero h1 {
        font-size: 36px;
    }

    .hh-cities-hero-copy p {
        font-size: 12px;
    }


    /* Stats */

    .hh-cities-stats > div {
        min-height: 88px;

        padding: 15px;
    }

    .hh-cities-stats strong {
        font-size: 21px;
    }

    .hh-cities-stats span {
        font-size: 9px;
    }


    /* Finder */

    .hh-cities-finder {
        margin-top: -20px;
    }

    .hh-cities-search-box {
        padding: 14px;
    }

    .hh-cities-search-input {
        max-width: none;
    }


    /* Letter filters */

    .hh-cities-letter-filter {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 4px;

        scrollbar-width: none;
    }

    .hh-cities-letter-filter::-webkit-scrollbar {
        display: none;
    }

    .hh-city-letter {
        flex: 0 0 auto;
    }


    /* Directory */

    .hh-cities-directory {
        padding-top: 45px;
    }

    .hh-cities-directory-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .hh-directory-city-card {
        min-height: 245px;
    }


    /* How it works */

    .hh-cities-how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .hh-cities-how-grid > div {
        min-height: 150px;

        padding: 15px;
    }


    /* Info */

    .hh-cities-info-box {
        padding: 21px;

        border-radius: 9px;
    }

    .hh-cities-info-box h2 {
        font-size: 19px;
    }

    .hh-cities-info-box p {
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-cities-hero h1 {
        font-size: 32px;
    }

    .hh-cities-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-cities-how-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   END FILE 19
========================================================= */
/* =========================================================
   FILE 21
   USE CASES DIRECTORY PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.hh-use-cases-directory-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hh-use-cases-directory-hero {
    padding: 48px 0 54px;

    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #ffffff 50%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-use-cases-directory-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(340px, .8fr);

    gap: 45px;

    align-items: center;
}

.hh-use-cases-directory-copy {
    max-width: 720px;
}

.hh-use-cases-directory-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-use-cases-directory-copy h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(38px, 4.3vw, 56px);
    line-height: 1.08;

    letter-spacing: -1.7px;
}

.hh-use-cases-directory-copy h1 span {
    color: var(--hh-primary);
}

.hh-use-cases-directory-copy p {
    max-width: 680px;

    margin: 18px 0 0;

    color: #4d596d;

    font-size: 14px;
    line-height: 1.75;
}

.hh-use-cases-directory-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    margin-top: 22px;

    padding: 9px 18px;

    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-use-cases-directory-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   HERO STATS
========================================================= */

.hh-use-cases-directory-stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(7, 28, 75, .07);
}

.hh-use-cases-directory-stats > div {
    min-height: 108px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--hh-border);
    border-bottom: 1px solid var(--hh-border);
}

.hh-use-cases-directory-stats > div:nth-child(2n) {
    border-right: 0;
}

.hh-use-cases-directory-stats > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hh-use-cases-directory-stats strong {
    color: var(--hh-navy);

    font-size: 25px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-use-cases-directory-stats span {
    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   QUICK SEARCH
========================================================= */

.hh-use-cases-quick-search {
    position: relative;
    z-index: 20;

    margin-top: -24px;
}

.hh-use-cases-search-box {
    display: grid;

    grid-template-columns:
        minmax(180px, 1.3fr)
        minmax(145px, 1fr)
        minmax(135px, .9fr)
        minmax(125px, .8fr)
        auto;

    gap: 11px;

    align-items: end;

    padding: 16px 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(7, 28, 75, .10);
}

.hh-use-cases-search-field {
    min-width: 0;
}

.hh-use-cases-search-field label {
    display: block;

    margin-bottom: 6px;

    color: #364259;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
}

.hh-use-cases-search-field input,
.hh-use-cases-search-field select {
    width: 100%;
    height: 43px;

    padding: 0 11px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.hh-use-cases-search-field input:focus,
.hh-use-cases-search-field select:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255, 101, 15, .08);
}

.hh-use-cases-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 43px;

    padding: 0 22px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-use-cases-search-button:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}


/* =========================================================
   DIRECTORY SECTION
========================================================= */

.hh-use-cases-directory {
    padding-top: 58px;
}

.hh-use-cases-directory-intro {
    margin: 6px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
}


/* =========================================================
   USE CASE DIRECTORY GRID
========================================================= */

.hh-use-cases-directory-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;
}


/* =========================================================
   USE CASE CARD
========================================================= */

.hh-use-case-directory-card {
    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 4px 16px rgba(7, 28, 75, .04);

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hh-use-case-directory-card:hover {
    border-color: #ffd2b9;

    transform: translateY(-3px);

    box-shadow:
        0 10px 27px rgba(7, 28, 75, .08);
}


/* =========================================================
   CARD TOP
========================================================= */

.hh-use-case-directory-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.hh-use-case-directory-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--hh-primary-light),
            #fff2e9
        );

    color: var(--hh-primary);

    font-size: 16px;
    font-weight: 800;
}


/* =========================================================
   STATUS
========================================================= */

.hh-use-case-status-active,
.hh-use-case-status-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 24px;

    padding: 4px 8px;

    border-radius: 20px;

    font-size: 8px;
    font-weight: 800;
}

.hh-use-case-status-active {
    background: #edf9f2;

    color: #158348;
}

.hh-use-case-status-soon {
    background: #f3f4f6;

    color: #6f7888;
}


/* =========================================================
   TITLE / DESCRIPTION
========================================================= */

.hh-use-case-directory-title {
    margin-top: 17px;
}

.hh-use-case-directory-title h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 17px;
    line-height: 1.3;
}

.hh-use-case-directory-title p {
    margin: 7px 0 0;

    min-height: 48px;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   CARD META
========================================================= */

.hh-use-case-directory-meta {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 6px;

    margin-top: 15px;
}

.hh-use-case-directory-meta > div {
    min-width: 0;

    padding: 9px 7px;

    border-radius: 7px;

    background: #f7f8fa;
}

.hh-use-case-directory-meta span {
    display: block;

    color: var(--hh-muted);

    font-size: 7px;
    line-height: 1.2;
}

.hh-use-case-directory-meta strong {
    display: block;

    margin-top: 4px;

    color: var(--hh-navy);

    font-size: 12px;
}


/* =========================================================
   CARD PRICES
========================================================= */

.hh-use-case-directory-prices {
    display: flex;
    flex-wrap: wrap;

    gap: 6px 14px;

    margin-top: 13px;

    padding-top: 12px;

    border-top: 1px solid var(--hh-border);
}

.hh-use-case-directory-prices > span {
    color: var(--hh-muted);

    font-size: 8px;
}

.hh-use-case-directory-prices strong {
    color: var(--hh-navy);

    font-size: 10px;
}


/* =========================================================
   CARD CTA
========================================================= */

.hh-use-case-directory-link {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 37px;

    margin-top: auto;
    padding: 8px 12px;

    border: 1px solid #ffd3bb;
    border-radius: 7px;

    background: #fff8f4;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 800;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.hh-use-case-directory-link:hover {
    border-color: var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}


/* =========================================================
   REASONS GRID
========================================================= */

.hh-use-case-reasons-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.hh-use-case-reasons-grid > div {
    min-height: 170px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;
}

.hh-use-case-reasons-grid > div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 13px;

    border-radius: 9px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 15px;
    font-weight: 800;
}

.hh-use-case-reasons-grid h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 13px;
}

.hh-use-case-reasons-grid p {
    margin: 7px 0 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.hh-use-cases-how-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.hh-use-cases-how-grid > div {
    min-height: 160px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;
}

.hh-use-cases-how-grid > div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 14px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 10px;
    font-weight: 800;
}

.hh-use-cases-how-grid h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 13px;
}

.hh-use-cases-how-grid p {
    margin: 7px 0 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   INFO BOX
========================================================= */

.hh-use-cases-info-box {
    max-width: 900px;

    margin: 0 auto;

    padding: 30px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfcfd
        );

    box-shadow:
        0 4px 18px rgba(7, 28, 75, .04);
}

.hh-use-cases-info-box h2 {
    margin: 0 0 16px;

    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.35;
}

.hh-use-cases-info-box p {
    color: #4e5a6e;

    font-size: 13px;
    line-height: 1.8;
}

.hh-use-cases-info-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-use-cases-directory-hero-grid {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(300px, .8fr);

        gap: 30px;
    }


    .hh-use-cases-search-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .hh-use-cases-search-button {
        width: 100%;
    }


    .hh-use-cases-directory-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .hh-use-case-reasons-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .hh-use-cases-how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-use-cases-directory-hero {
        padding:
            40px 0
            55px;
    }


    .hh-use-cases-directory-hero-grid {
        grid-template-columns: 1fr;
    }


    .hh-use-cases-directory-stats {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-use-cases-directory-hero {
        padding:
            32px 0
            54px;
    }


    .hh-use-cases-directory-copy h1 {
        font-size: 36px;
    }


    .hh-use-cases-directory-copy p {
        font-size: 12px;
    }


    /* Stats */

    .hh-use-cases-directory-stats > div {
        min-height: 88px;

        padding: 15px;
    }

    .hh-use-cases-directory-stats strong {
        font-size: 21px;
    }

    .hh-use-cases-directory-stats span {
        font-size: 9px;
    }


    /* Search */

    .hh-use-cases-quick-search {
        margin-top: -20px;
    }

    .hh-use-cases-search-box {
        grid-template-columns: 1fr;

        padding: 14px;
    }


    /* Directory */

    .hh-use-cases-directory {
        padding-top: 46px;
    }

    .hh-use-cases-directory-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .hh-use-case-directory-card {
        min-height: 310px;
    }


    /* Reason cards */

    .hh-use-case-reasons-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .hh-use-case-reasons-grid > div {
        min-height: 155px;

        padding: 15px;
    }


    /* How */

    .hh-use-cases-how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .hh-use-cases-how-grid > div {
        min-height: 150px;

        padding: 15px;
    }


    /* Info */

    .hh-use-cases-info-box {
        padding: 21px;

        border-radius: 9px;
    }

    .hh-use-cases-info-box h2 {
        font-size: 19px;
    }

    .hh-use-cases-info-box p {
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-use-cases-directory-copy h1 {
        font-size: 32px;
    }


    .hh-use-cases-directory-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .hh-use-case-directory-meta {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .hh-use-case-reasons-grid {
        grid-template-columns: 1fr;
    }


    .hh-use-cases-how-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   END FILE 21
========================================================= */
/* =========================================================
   FILE 23
   LIST YOUR HOTEL LANDING PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.hh-list-hotel-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hh-list-hotel-hero {
    padding: 50px 0 58px;

    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #ffffff 48%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-list-hotel-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(340px, .75fr);

    gap: 50px;

    align-items: center;
}

.hh-list-hotel-hero-copy {
    max-width: 720px;
}

.hh-list-hotel-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-list-hotel-hero h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(40px, 4.4vw, 58px);
    line-height: 1.07;

    letter-spacing: -1.8px;
}

.hh-list-hotel-hero h1 span {
    display: block;

    color: var(--hh-primary);
}

.hh-list-hotel-hero-intro {
    max-width: 650px;

    margin: 18px 0 0;

    color: #46536a;

    font-size: 15px;
    line-height: 1.75;

    font-weight: 500;
}

.hh-list-hotel-hero-sub {
    max-width: 640px;

    margin: 9px 0 0;

    color: var(--hh-muted);

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hh-list-hotel-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;
}

.hh-list-hotel-primary-cta,
.hh-list-hotel-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 18px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.hh-list-hotel-primary-cta {
    border: 1px solid var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;

    box-shadow:
        0 6px 14px rgba(255,101,15,.20);
}

.hh-list-hotel-primary-cta:hover {
    background: var(--hh-primary-hover);

    border-color: var(--hh-primary-hover);

    transform: translateY(-1px);
}

.hh-list-hotel-secondary-cta {
    border: 1px solid var(--hh-border-dark);

    background: #ffffff;

    color: var(--hh-text);
}

.hh-list-hotel-secondary-cta:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);

    transform: translateY(-1px);
}


/* =========================================================
   HERO TRUST POINTS
========================================================= */

.hh-list-hotel-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px 16px;

    margin-top: 21px;
}

.hh-list-hotel-hero-trust span {
    color: #536076;

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   HOTEL PROFILE PREVIEW
========================================================= */

.hh-list-hotel-preview-card {
    max-width: 400px;

    margin-left: auto;

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 16px 42px rgba(7, 28, 75, .13);
}

.hh-partner-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 12px 14px;

    border-bottom: 1px solid var(--hh-border);
}

.hh-partner-preview-label {
    color: var(--hh-muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-partner-preview-status {
    display: inline-flex;
    align-items: center;

    min-height: 23px;

    padding: 4px 8px;

    border-radius: 20px;

    background: #edf9f2;

    color: #158348;

    font-size: 8px;
    font-weight: 800;
}


/* Preview Image */

.hh-partner-preview-image {
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #dfe3e9,
            #f1f3f6
        );
}

.hh-partner-preview-image > div {
    color: #7c8797;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* Preview Content */

.hh-partner-preview-content {
    padding: 15px;
}

.hh-partner-preview-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;
}

.hh-partner-preview-title h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 15px;
    line-height: 1.3;
}

.hh-partner-preview-title p {
    margin: 4px 0 0;

    color: var(--hh-muted);

    font-size: 9px;
}

.hh-partner-preview-title > span {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    padding: 5px 7px;

    border-radius: 6px;

    background: #eef7ff;

    color: #176da2;

    font-size: 9px;
    font-weight: 800;
}


/* Pricing */

.hh-partner-preview-pricing {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 14px;
}

.hh-partner-preview-pricing > div {
    padding: 10px;

    border-radius: 7px;

    background: #f7f8fa;
}

.hh-partner-preview-pricing small {
    display: block;

    color: var(--hh-muted);

    font-size: 8px;
}

.hh-partner-preview-pricing strong {
    display: block;

    margin-top: 3px;

    color: var(--hh-navy);

    font-size: 14px;
}


/* Badges */

.hh-partner-preview-badges {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 11px;
}

.hh-partner-preview-badges span {
    display: inline-flex;
    align-items: center;

    min-height: 23px;

    padding: 4px 7px;

    border: 1px solid var(--hh-border);
    border-radius: 20px;

    background: #ffffff;

    color: #596578;

    font-size: 7px;
    font-weight: 600;
}


/* Preview CTA */

.hh-partner-preview-button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    margin-top: 13px;

    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   PLATFORM STATS
========================================================= */

.hh-list-hotel-stats-section {
    position: relative;
    z-index: 20;

    margin-top: -25px;
}

.hh-list-hotel-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 27px rgba(7, 28, 75, .10);
}

.hh-list-hotel-stats > div {
    min-height: 88px;

    padding: 17px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--hh-border);
}

.hh-list-hotel-stats > div:last-child {
    border-right: 0;
}

.hh-list-hotel-stats strong {
    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-list-hotel-stats span {
    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 9px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.hh-list-hotel-section-heading {
    max-width: 760px;

    margin-bottom: 27px;
}

.hh-list-hotel-section-heading > span {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.hh-list-hotel-section-heading h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 27px;
    line-height: 1.25;

    letter-spacing: -.5px;
}

.hh-list-hotel-section-heading p {
    max-width: 650px;

    margin: 8px 0 0;

    color: var(--hh-muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS GRID
========================================================= */

.hh-list-hotel-benefits {
    padding-top: 70px;
}

.hh-list-hotel-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.hh-list-hotel-benefit-grid article {
    min-height: 220px;

    padding: 20px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.hh-list-hotel-benefit-grid article:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);

    box-shadow:
        0 9px 23px rgba(7, 28, 75, .07);
}

.hh-list-hotel-benefit-grid article > div {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    margin-bottom: 15px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 10px;
    font-weight: 800;
}

.hh-list-hotel-benefit-grid h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 14px;
    line-height: 1.35;
}

.hh-list-hotel-benefit-grid p {
    margin: 8px 0 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   PROFILE FEATURES
========================================================= */

.hh-list-hotel-features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.hh-list-hotel-features-grid > div {
    min-height: 150px;

    padding: 16px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;
}

.hh-list-hotel-features-grid > div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    margin-bottom: 13px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 14px;
    font-weight: 800;
}

.hh-list-hotel-features-grid strong {
    display: block;

    color: var(--hh-navy);

    font-size: 12px;
    line-height: 1.35;
}

.hh-list-hotel-features-grid small {
    display: block;

    margin-top: 6px;

    color: var(--hh-muted);

    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.hh-list-hotel-how {
    background: #ffffff;
}

.hh-list-hotel-how-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* Connecting Line */

.hh-list-hotel-how-grid::before {
    content: "";

    position: absolute;

    top: 24px;
    left: 12%;

    width: 76%;
    height: 1px;

    background: #e7e9ed;

    z-index: 0;
}

.hh-list-hotel-how-grid article {
    position: relative;
    z-index: 1;

    min-height: 190px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;
}

.hh-list-hotel-step {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 16px;

    border: 5px solid #ffffff;
    border-radius: 50%;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 0 0 1px #ffd5bd;
}

.hh-list-hotel-how-grid h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 13px;
}

.hh-list-hotel-how-grid p {
    margin: 7px 0 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.65;
}


/* =========================================================
   VERIFICATION BLOCK
========================================================= */

.hh-hotel-verification-box {
    display: grid;

    grid-template-columns:
        70px
        minmax(0, 1fr);

    gap: 20px;

    align-items: start;

    max-width: 900px;

    margin: 0 auto;

    padding: 28px;

    border: 1px solid #cfe2f3;
    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #ffffff
        );
}

.hh-hotel-verification-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 14px;

    background: #e8f4ff;

    color: #176da2;

    font-size: 22px;
    font-weight: 800;
}

.hh-hotel-verification-copy > span {
    display: block;

    margin-bottom: 6px;

    color: #176da2;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-hotel-verification-copy h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 21px;
    line-height: 1.35;
}

.hh-hotel-verification-copy p {
    margin: 9px 0 0;

    max-width: 720px;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   WHO CAN JOIN
========================================================= */

.hh-hotel-suitable-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 11px;
}

.hh-hotel-suitable-grid > div {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    min-height: 80px;

    padding: 14px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #ffffff;
}

.hh-hotel-suitable-grid > div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: #edf9f2;

    color: #158348;

    font-size: 10px;
    font-weight: 800;
}

.hh-hotel-suitable-grid p {
    margin: 2px 0 0;

    color: #4d596d;

    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   FINAL PARTNER CTA
========================================================= */

.hh-hotel-partner-final-cta {
    padding: 35px 0 70px;

    background: #ffffff;
}

.hh-hotel-partner-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 35px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #071c4b,
            #0b2c68
        );

    box-shadow:
        0 13px 35px rgba(7, 28, 75, .16);
}

.hh-hotel-partner-final-box > div:first-child {
    max-width: 680px;
}

.hh-hotel-partner-final-box > div:first-child > span {
    display: block;

    margin-bottom: 7px;

    color: #ffb789;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-hotel-partner-final-box h2 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;
    line-height: 1.25;
}

.hh-hotel-partner-final-box p {
    margin: 9px 0 0;

    max-width: 620px;

    color: rgba(255,255,255,.74);

    font-size: 11px;
    line-height: 1.7;
}


/* Final Actions */

.hh-hotel-partner-final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    flex-shrink: 0;
}

.hh-hotel-partner-final-primary,
.hh-hotel-partner-final-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 16px;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.hh-hotel-partner-final-primary {
    border: 1px solid var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;
}

.hh-hotel-partner-final-primary:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}

.hh-hotel-partner-final-secondary {
    border: 1px solid rgba(255,255,255,.27);

    background: rgba(255,255,255,.08);

    color: #ffffff;
}

.hh-hotel-partner-final-secondary:hover {
    background: rgba(255,255,255,.15);

    transform: translateY(-1px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-list-hotel-hero-grid {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(320px, .8fr);

        gap: 32px;
    }

    .hh-list-hotel-benefit-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-list-hotel-features-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-list-hotel-how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-list-hotel-how-grid::before {
        display: none;
    }

    .hh-hotel-suitable-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-list-hotel-hero {
        padding:
            40px 0
            58px;
    }

    .hh-list-hotel-hero-grid {
        grid-template-columns: 1fr;
    }

    .hh-list-hotel-preview-card {
        width: 100%;
        max-width: 520px;

        margin: 0;
    }

    .hh-list-hotel-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-list-hotel-stats > div {
        border-right: 1px solid var(--hh-border);
        border-bottom: 1px solid var(--hh-border);
    }

    .hh-list-hotel-stats > div:nth-child(2n) {
        border-right: 0;
    }

    .hh-list-hotel-stats > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .hh-hotel-partner-final-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-list-hotel-hero {
        padding:
            32px 0
            56px;
    }

    .hh-list-hotel-hero h1 {
        font-size: 36px;
    }

    .hh-list-hotel-hero-intro {
        font-size: 13px;
    }

    .hh-list-hotel-hero-sub {
        font-size: 11px;
    }


    /* Hero CTA */

    .hh-list-hotel-hero-actions {
        align-items: stretch;
    }

    .hh-list-hotel-primary-cta,
    .hh-list-hotel-secondary-cta {
        flex: 1 1 150px;
    }


    /* Preview */

    .hh-partner-preview-image {
        height: 160px;
    }


    /* Stats */

    .hh-list-hotel-stats-section {
        margin-top: -20px;
    }

    .hh-list-hotel-stats > div {
        min-height: 79px;

        padding: 13px;
    }

    .hh-list-hotel-stats strong {
        font-size: 19px;
    }

    .hh-list-hotel-stats span {
        font-size: 8px;
    }


    /* Sections */

    .hh-list-hotel-benefits {
        padding-top: 55px;
    }

    .hh-list-hotel-section-heading h2 {
        font-size: 22px;
    }

    .hh-list-hotel-section-heading p {
        font-size: 11px;
    }


    /* Benefits */

    .hh-list-hotel-benefit-grid {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .hh-list-hotel-benefit-grid article {
        min-height: auto;

        padding: 17px;
    }


    /* Features */

    .hh-list-hotel-features-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .hh-list-hotel-features-grid > div {
        min-height: 145px;

        padding: 14px;
    }


    /* How It Works */

    .hh-list-hotel-how-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .hh-list-hotel-how-grid article {
        min-height: auto;

        padding: 16px;
    }


    /* Verification */

    .hh-hotel-verification-box {
        grid-template-columns: 1fr;

        gap: 14px;

        padding: 21px;
    }

    .hh-hotel-verification-icon {
        width: 50px;
        height: 50px;
    }

    .hh-hotel-verification-copy h2 {
        font-size: 18px;
    }


    /* Suitable */

    .hh-hotel-suitable-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .hh-hotel-suitable-grid > div {
        min-height: auto;
    }


    /* Final CTA */

    .hh-hotel-partner-final-cta {
        padding-bottom: 55px;
    }

    .hh-hotel-partner-final-box {
        padding: 24px 20px;

        border-radius: 11px;
    }

    .hh-hotel-partner-final-box h2 {
        font-size: 22px;
    }

    .hh-hotel-partner-final-actions {
        width: 100%;
    }

    .hh-hotel-partner-final-primary,
    .hh-hotel-partner-final-secondary {
        flex: 1 1 145px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-list-hotel-hero h1 {
        font-size: 32px;
    }

    .hh-list-hotel-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-list-hotel-features-grid {
        grid-template-columns: 1fr;
    }

    .hh-list-hotel-primary-cta,
    .hh-list-hotel-secondary-cta {
        width: 100%;
        flex: none;
    }

    .hh-hotel-partner-final-primary,
    .hh-hotel-partner-final-secondary {
        width: 100%;
        flex: none;
    }

}


/* =========================================================
   END FILE 23
========================================================= */

/* =========================================================
   FILE 25
   HOW IT WORKS PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.hh-how-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hh-how-hero {
    padding: 50px 0 58px;

    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #ffffff 50%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-how-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(340px, .7fr);

    gap: 50px;

    align-items: center;
}

.hh-how-hero-copy {
    max-width: 720px;
}

.hh-how-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-how-hero h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(40px, 4.4vw, 58px);
    line-height: 1.07;

    letter-spacing: -1.8px;
}

.hh-how-hero h1 span {
    display: block;

    color: var(--hh-primary);
}

.hh-how-hero-intro {
    max-width: 660px;

    margin: 18px 0 0;

    color: #4c596d;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hh-how-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;
}

.hh-how-primary-button,
.hh-how-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 18px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.hh-how-primary-button {
    border: 1px solid var(--hh-primary);

    background: var(--hh-primary);

    color: #ffffff;

    box-shadow:
        0 6px 14px rgba(255,101,15,.2);
}

.hh-how-primary-button:hover {
    background: var(--hh-primary-hover);

    border-color: var(--hh-primary-hover);

    transform: translateY(-1px);
}

.hh-how-secondary-button {
    border: 1px solid var(--hh-border-dark);

    background: #ffffff;

    color: var(--hh-text);
}

.hh-how-secondary-button:hover {
    border-color: var(--hh-primary);

    color: var(--hh-primary);

    transform: translateY(-1px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hh-how-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px 16px;

    margin-top: 20px;
}

.hh-how-hero-trust span {
    color: #536076;

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   PROCESS PREVIEW
========================================================= */

.hh-how-process-preview {
    max-width: 400px;

    margin-left: auto;

    padding: 22px;

    border: 1px solid var(--hh-border);
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 15px 42px rgba(7, 28, 75, .12);
}

.hh-how-preview-heading {
    padding-bottom: 15px;

    border-bottom: 1px solid var(--hh-border);
}

.hh-how-preview-heading span {
    color: var(--hh-muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-how-preview-step {
    display: grid;

    grid-template-columns:
        40px
        minmax(0, 1fr);

    gap: 12px;

    align-items: center;
}

.hh-how-preview-step > div {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 11px;
    font-weight: 800;
}

.hh-how-preview-step section {
    padding: 13px 0;
}

.hh-how-preview-step strong {
    display: block;

    color: var(--hh-navy);

    font-size: 12px;
}

.hh-how-preview-step small {
    display: block;

    margin-top: 3px;

    color: var(--hh-muted);

    font-size: 9px;
}

.hh-how-preview-line {
    display: block;

    width: 1px;
    height: 18px;

    margin-left: 20px;

    background: #dfe3e9;
}


/* =========================================================
   PLATFORM STATS
========================================================= */

.hh-how-stats-section {
    position: relative;
    z-index: 20;

    margin-top: -25px;
}

.hh-how-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 27px rgba(7, 28, 75, .10);
}

.hh-how-stats > div {
    min-height: 88px;

    padding: 17px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--hh-border);
}

.hh-how-stats > div:last-child {
    border-right: 0;
}

.hh-how-stats strong {
    color: var(--hh-navy);

    font-size: 22px;
    line-height: 1.1;

    font-weight: 800;
}

.hh-how-stats span {
    margin-top: 5px;

    color: var(--hh-muted);

    font-size: 9px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.hh-how-section-heading {
    max-width: 760px;

    margin-bottom: 27px;
}

.hh-how-section-heading > span {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.hh-how-section-heading h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 27px;
    line-height: 1.25;

    letter-spacing: -.5px;
}

.hh-how-section-heading p {
    max-width: 650px;

    margin: 8px 0 0;

    color: var(--hh-muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   QUICK SEARCH SECTION
========================================================= */

.hh-how-search-section {
    padding-top: 70px;
}

.hh-how-search-box {
    display: grid;

    grid-template-columns:
        minmax(180px, 1.3fr)
        minmax(145px, 1fr)
        minmax(135px, .9fr)
        minmax(125px, .8fr)
        auto;

    gap: 11px;

    align-items: end;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(7, 28, 75, .07);
}

.hh-how-search-field {
    min-width: 0;
}

.hh-how-search-field label {
    display: block;

    margin-bottom: 6px;

    color: #364259;

    font-size: 10px;
    font-weight: 700;
}

.hh-how-search-field input,
.hh-how-search-field select {
    width: 100%;
    height: 43px;

    padding: 0 11px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 12px;
}

.hh-how-search-field input:focus,
.hh-how-search-field select:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255,101,15,.08);
}

.hh-how-search-button {
    height: 43px;

    padding: 0 22px;

    border: 0;
    border-radius: 7px;

    background: var(--hh-primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;
}

.hh-how-search-button:hover {
    background: var(--hh-primary-hover);
}

.hh-how-search-note {
    margin: 9px 0 0;

    color: var(--hh-muted);

    font-size: 9px;
}


/* =========================================================
   MAIN STEPS
========================================================= */

.hh-how-main-steps {
    display: grid;

    gap: 18px;
}

.hh-how-main-step {
    display: grid;

    grid-template-columns:
        70px
        minmax(0, 1fr);

    gap: 22px;

    padding: 25px;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 4px 16px rgba(7, 28, 75, .035);
}

.hh-how-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 14px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 14px;
    font-weight: 800;
}

.hh-how-step-content > span {
    display: block;

    margin-bottom: 5px;

    color: var(--hh-primary);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-how-step-content h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 19px;
}

.hh-how-step-content > p {
    max-width: 780px;

    margin: 8px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   STEP 1 EXAMPLE
========================================================= */

.hh-how-example-box {
    max-width: 460px;

    margin-top: 16px;

    padding: 14px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #f8f9fb;
}

.hh-how-example-box > small {
    display: block;

    color: var(--hh-muted);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .8px;
}

.hh-how-example-box > strong {
    display: block;

    margin-top: 5px;

    color: var(--hh-navy);

    font-size: 13px;
}

.hh-how-example-box > div {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 9px;
}

.hh-how-example-box span {
    padding: 5px 8px;

    border-radius: 20px;

    background: #ffffff;

    color: #536076;

    font-size: 8px;
}


/* =========================================================
   STEP 2 CHECK GRID
========================================================= */

.hh-how-check-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 8px;

    margin-top: 17px;
}

.hh-how-check-grid span {
    padding: 9px 10px;

    border: 1px solid var(--hh-border);
    border-radius: 7px;

    background: #ffffff;

    color: #536076;

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   STEP 3 HOTEL PREVIEW
========================================================= */

.hh-how-hotel-preview {
    display: grid;

    grid-template-columns:
        100px
        minmax(0, 1fr);

    gap: 13px;

    max-width: 420px;

    margin-top: 16px;

    padding: 10px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #ffffff;
}

.hh-how-hotel-preview-image {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 82px;

    border-radius: 6px;

    background: #edf0f4;

    color: var(--hh-muted);

    font-size: 8px;
    font-weight: 800;
}

.hh-how-hotel-preview strong {
    display: block;

    color: var(--hh-navy);

    font-size: 12px;
}

.hh-how-hotel-preview small {
    display: block;

    margin-top: 3px;

    color: var(--hh-muted);

    font-size: 8px;
}

.hh-how-hotel-preview p {
    margin: 12px 0 0;

    color: var(--hh-muted);

    font-size: 9px;
}

.hh-how-hotel-preview p b {
    display: block;

    margin-top: 3px;

    color: var(--hh-primary);

    font-size: 14px;
}

.hh-how-demo-note {
    display: block;

    margin-top: 6px;

    color: var(--hh-muted);

    font-size: 8px;
}


/* =========================================================
   STEP 4 CONTACT OPTIONS
========================================================= */

.hh-how-contact-options {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 9px;

    max-width: 520px;

    margin-top: 17px;
}

.hh-how-contact-options > div {
    padding: 13px;

    border: 1px solid var(--hh-border);
    border-radius: 8px;

    background: #ffffff;

    text-align: center;
}

.hh-how-contact-options span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    margin: 0 auto 7px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 13px;
}

.hh-how-contact-options strong {
    color: var(--hh-navy);

    font-size: 9px;
}


/* =========================================================
   INFORMATION GRID
========================================================= */

.hh-how-information-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.hh-how-information-grid article {
    min-height: 180px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hh-how-information-grid article:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(7,28,75,.07);
}

.hh-how-information-grid article > div {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 13px;

    border-radius: 9px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 14px;
    font-weight: 800;
}

.hh-how-information-grid h3 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 13px;
}

.hh-how-information-grid p {
    margin: 7px 0 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.65;
}


/* =========================================================
   DURATION GRID
========================================================= */

.hh-how-duration-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 10px;
}

.hh-how-duration-grid > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 135px;

    padding: 14px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    text-align: center;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hh-how-duration-grid > a:hover {
    border-color: var(--hh-primary);

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(7,28,75,.06);
}

.hh-how-duration-grid strong {
    color: var(--hh-primary);

    font-size: 28px;
    line-height: 1;
}

.hh-how-duration-grid span {
    margin-top: 4px;

    color: var(--hh-navy);

    font-size: 11px;
    font-weight: 800;
}

.hh-how-duration-grid small {
    margin-top: 7px;

    color: var(--hh-muted);

    font-size: 8px;
}

.hh-how-duration-note {
    margin: 13px 0 0;

    color: var(--hh-muted);

    font-size: 9px;
}


/* =========================================================
   USE CASE GRID
========================================================= */

.hh-how-use-case-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.hh-how-use-case-grid > a {
    display: grid;

    grid-template-columns:
        40px
        minmax(0, 1fr);

    gap: 11px;

    align-items: center;

    min-height: 90px;

    padding: 14px;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.hh-how-use-case-grid > a:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);
}

.hh-how-use-case-grid > a > span {
    grid-row: 1 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 9px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 15px;
    font-weight: 800;
}

.hh-how-use-case-grid strong {
    color: var(--hh-navy);

    font-size: 11px;
}

.hh-how-use-case-grid small {
    color: var(--hh-muted);

    font-size: 8px;
}


/* =========================================================
   DIRECT CONTACT BOX
========================================================= */

.hh-how-direct-box {
    display: grid;

    grid-template-columns:
        70px
        minmax(0, 1fr);

    gap: 20px;

    max-width: 920px;

    margin: 0 auto;

    padding: 28px;

    border: 1px solid #cfe2f3;
    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #ffffff
        );
}

.hh-how-direct-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 14px;

    background: #e8f4ff;

    color: #176da2;

    font-size: 22px;
    font-weight: 800;
}

.hh-how-direct-copy > span {
    display: block;

    margin-bottom: 6px;

    color: #176da2;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-how-direct-copy h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 21px;
}

.hh-how-direct-copy p {
    max-width: 750px;

    margin: 9px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   VERIFICATION
========================================================= */

.hh-how-verification-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(260px, .7fr);

    gap: 35px;

    align-items: center;
}

.hh-how-verification-copy > span {
    display: block;

    margin-bottom: 7px;

    color: #176da2;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-how-verification-copy h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 25px;
}

.hh-how-verification-copy p {
    max-width: 650px;

    margin: 9px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.75;
}

.hh-how-verification-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 26px;

    border: 1px solid #cfe2f3;
    border-radius: 12px;

    background: #f8fcff;

    text-align: center;
}

.hh-how-verification-card > div {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 13px;

    border-radius: 50%;

    background: #e8f4ff;

    color: #176da2;

    font-size: 20px;
    font-weight: 800;
}

.hh-how-verification-card strong {
    color: var(--hh-navy);

    font-size: 13px;
}

.hh-how-verification-card span {
    margin-top: 5px;

    color: #176da2;

    font-size: 9px;
    font-weight: 700;
}

.hh-how-verification-card small {
    margin-top: 10px;

    color: var(--hh-muted);

    font-size: 8px;
    line-height: 1.5;
}


/* =========================================================
   FINAL CTA
========================================================= */

.hh-how-final-cta {
    padding: 35px 0 70px;

    background: #ffffff;
}

.hh-how-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 35px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #071c4b,
            #0b2c68
        );

    box-shadow:
        0 13px 35px rgba(7, 28, 75, .16);
}

.hh-how-final-box > div:first-child {
    max-width: 680px;
}

.hh-how-final-box > div:first-child > span {
    display: block;

    margin-bottom: 7px;

    color: #ffb789;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-how-final-box h2 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;
}

.hh-how-final-box p {
    max-width: 620px;

    margin: 9px 0 0;

    color: rgba(255,255,255,.74);

    font-size: 11px;
    line-height: 1.7;
}

.hh-how-final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    flex-shrink: 0;
}

.hh-how-final-primary,
.hh-how-final-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 16px;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;

    transition:
        transform .2s ease,
        background .2s ease;
}

.hh-how-final-primary {
    background: var(--hh-primary);

    color: #ffffff;
}

.hh-how-final-primary:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}

.hh-how-final-secondary {
    border: 1px solid rgba(255,255,255,.27);

    background: rgba(255,255,255,.08);

    color: #ffffff;
}

.hh-how-final-secondary:hover {
    background: rgba(255,255,255,.15);

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-how-hero-grid {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(320px, .8fr);

        gap: 32px;
    }

    .hh-how-search-box {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-how-search-button {
        width: 100%;
    }

    .hh-how-check-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-how-information-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-how-duration-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-how-use-case-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-how-hero {
        padding:
            40px 0
            58px;
    }

    .hh-how-hero-grid {
        grid-template-columns: 1fr;
    }

    .hh-how-process-preview {
        width: 100%;
        max-width: 520px;

        margin: 0;
    }

    .hh-how-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-how-stats > div {
        border-right: 1px solid var(--hh-border);
        border-bottom: 1px solid var(--hh-border);
    }

    .hh-how-stats > div:nth-child(2n) {
        border-right: 0;
    }

    .hh-how-stats > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .hh-how-verification-layout {
        grid-template-columns: 1fr;
    }

    .hh-how-verification-card {
        max-width: 420px;
    }

    .hh-how-final-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-how-hero {
        padding:
            32px 0
            56px;
    }

    .hh-how-hero h1 {
        font-size: 36px;
    }

    .hh-how-hero-intro {
        font-size: 12px;
    }


    /* Buttons */

    .hh-how-hero-actions {
        align-items: stretch;
    }

    .hh-how-primary-button,
    .hh-how-secondary-button {
        flex: 1 1 145px;
    }


    /* Stats */

    .hh-how-stats-section {
        margin-top: -20px;
    }

    .hh-how-stats > div {
        min-height: 79px;

        padding: 13px;
    }

    .hh-how-stats strong {
        font-size: 19px;
    }

    .hh-how-stats span {
        font-size: 8px;
    }


    /* Heading */

    .hh-how-search-section {
        padding-top: 55px;
    }

    .hh-how-section-heading h2 {
        font-size: 22px;
    }

    .hh-how-section-heading p {
        font-size: 11px;
    }


    /* Search */

    .hh-how-search-box {
        grid-template-columns: 1fr;

        padding: 14px;
    }


    /* Main Steps */

    .hh-how-main-step {
        grid-template-columns: 1fr;

        gap: 13px;

        padding: 18px;
    }

    .hh-how-step-number {
        width: 45px;
        height: 45px;

        border-radius: 10px;
    }

    .hh-how-step-content h3 {
        font-size: 17px;
    }


    /* Check Grid */

    .hh-how-check-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* Contact */

    .hh-how-contact-options {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    /* Information */

    .hh-how-information-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .hh-how-information-grid article {
        min-height: auto;

        padding: 16px;
    }


    /* Duration */

    .hh-how-duration-grid {
        display: flex;

        gap: 10px;

        overflow-x: auto;

        padding-bottom: 8px;

        margin-right: -14px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .hh-how-duration-grid::-webkit-scrollbar {
        display: none;
    }

    .hh-how-duration-grid > a {
        flex: 0 0 145px;

        scroll-snap-align: start;
    }


    /* Use cases */

    .hh-how-use-case-grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    /* Direct */

    .hh-how-direct-box {
        grid-template-columns: 1fr;

        gap: 14px;

        padding: 21px;
    }

    .hh-how-direct-icon {
        width: 50px;
        height: 50px;
    }

    .hh-how-direct-copy h2 {
        font-size: 18px;
    }


    /* Verification */

    .hh-how-verification-copy h2 {
        font-size: 21px;
    }


    /* Final */

    .hh-how-final-cta {
        padding-bottom: 55px;
    }

    .hh-how-final-box {
        padding: 24px 20px;

        border-radius: 11px;
    }

    .hh-how-final-box h2 {
        font-size: 22px;
    }

    .hh-how-final-actions {
        width: 100%;
    }

    .hh-how-final-primary,
    .hh-how-final-secondary {
        flex: 1 1 145px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-how-hero h1 {
        font-size: 32px;
    }

    .hh-how-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hh-how-check-grid {
        grid-template-columns: 1fr;
    }

    .hh-how-contact-options {
        grid-template-columns: 1fr;
    }

    .hh-how-hotel-preview {
        grid-template-columns: 85px minmax(0, 1fr);
    }

    .hh-how-primary-button,
    .hh-how-secondary-button {
        width: 100%;

        flex: none;
    }

    .hh-how-final-primary,
    .hh-how-final-secondary {
        width: 100%;

        flex: none;
    }

}


/* =========================================================
   END FILE 25
========================================================= */

/* =========================================================
   FILE 27
   FAQ PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.hh-faq-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hh-faq-hero {
    padding: 52px 0 58px;

    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #ffffff 52%,
            #f7f9fc 100%
        );

    border-top: 1px solid #f1f2f5;
    border-bottom: 1px solid var(--hh-border);
}

.hh-faq-hero-inner {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}

.hh-faq-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--hh-primary);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.hh-faq-hero h1 {
    margin: 0;

    color: var(--hh-navy);

    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.08;

    letter-spacing: -1.8px;
}

.hh-faq-hero h1 span {
    color: var(--hh-primary);
}

.hh-faq-hero-inner > p {
    max-width: 690px;

    margin: 17px auto 0;

    color: #4d596d;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FAQ SEARCH
========================================================= */

.hh-faq-search {
    position: relative;

    max-width: 620px;

    margin: 26px auto 0;
}

.hh-faq-search > span {
    position: absolute;

    top: 50%;
    left: 16px;

    transform: translateY(-50%);

    color: var(--hh-muted);

    font-size: 20px;

    pointer-events: none;
}

.hh-faq-search input {
    width: 100%;
    height: 52px;

    padding:
        0
        18px
        0
        46px;

    border: 1px solid var(--hh-border-dark);
    border-radius: 9px;

    outline: none;

    background: #ffffff;

    color: var(--hh-text);

    font-size: 13px;

    box-shadow:
        0 8px 24px rgba(7, 28, 75, .07);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.hh-faq-search input:focus {
    border-color: var(--hh-primary);

    box-shadow:
        0 0 0 3px rgba(255,101,15,.08),
        0 8px 24px rgba(7, 28, 75, .08);
}

.hh-faq-search input::placeholder {
    color: #98a1af;
}


/* =========================================================
   HERO META
========================================================= */

.hh-faq-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px 18px;

    margin-top: 16px;
}

.hh-faq-hero-meta span {
    color: var(--hh-muted);

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   CATEGORY NAVIGATION
========================================================= */

.hh-faq-category-navigation {
    position: relative;
    z-index: 20;

    margin-top: -24px;
}

.hh-faq-category-links {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(7, 28, 75, .10);
}

.hh-faq-category-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 94px;

    padding: 12px 8px;

    border-right: 1px solid var(--hh-border);

    text-align: center;

    transition:
        background .2s ease,
        color .2s ease;
}

.hh-faq-category-links a:last-child {
    border-right: 0;
}

.hh-faq-category-links a:hover {
    background: #fff8f4;
}

.hh-faq-category-links a > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 7px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 13px;
    font-weight: 800;
}

.hh-faq-category-links strong {
    color: var(--hh-navy);

    font-size: 8px;
    line-height: 1.35;
}


/* =========================================================
   FAQ CONTENT
========================================================= */

.hh-faq-content {
    padding-top: 62px;
}

.hh-faq-categories {
    display: grid;

    gap: 48px;
}

.hh-faq-category {
    scroll-margin-top: 110px;
}

.hh-faq-category[hidden] {
    display: none !important;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.hh-faq-category-header {
    display: grid;

    grid-template-columns:
        52px
        minmax(0, 1fr);

    gap: 15px;

    align-items: start;

    max-width: 850px;

    margin-bottom: 17px;
}

.hh-faq-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 11px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 17px;
    font-weight: 800;
}

.hh-faq-category-header h2 {
    margin: 1px 0 0;

    color: var(--hh-navy);

    font-size: 21px;
    line-height: 1.3;
}

.hh-faq-category-header p {
    max-width: 680px;

    margin: 5px 0 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.65;
}


/* =========================================================
   FAQ LIST
========================================================= */

.hh-faq-list {
    max-width: 920px;

    display: grid;

    gap: 8px;
}

.hh-faq-item {
    overflow: hidden;

    border: 1px solid var(--hh-border);
    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.hh-faq-item:hover {
    border-color: #ffd3bb;
}

.hh-faq-item[open] {
    border-color: #ffd3bb;

    box-shadow:
        0 5px 18px rgba(7, 28, 75, .05);
}

.hh-faq-item[hidden] {
    display: none !important;
}


/* =========================================================
   FAQ SUMMARY
========================================================= */

.hh-faq-item summary {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 58px;

    padding:
        15px
        52px
        15px
        17px;

    color: var(--hh-navy);

    font-size: 11px;
    line-height: 1.5;

    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.hh-faq-item summary::-webkit-details-marker {
    display: none;
}

.hh-faq-item summary::after {
    content: "+";

    position: absolute;

    top: 50%;
    right: 17px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #f6f7f9;

    color: var(--hh-primary);

    font-size: 15px;
    font-weight: 600;

    transition:
        transform .2s ease,
        background .2s ease;
}

.hh-faq-item[open] summary::after {
    content: "−";

    background: var(--hh-primary-light);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.hh-faq-answer {
    padding:
        0
        52px
        17px
        17px;

    border-top: 1px solid #f1f2f5;
}

.hh-faq-answer p {
    max-width: 800px;

    margin: 14px 0 0;

    color: #536076;

    font-size: 10px;
    line-height: 1.75;
}


/* =========================================================
   NO SEARCH RESULTS
========================================================= */

.hh-faq-no-results {
    max-width: 580px;

    margin: 0 auto 40px;

    padding: 45px 25px;

    border: 1px dashed var(--hh-border-dark);
    border-radius: 11px;

    background: #fafbfc;

    text-align: center;
}

.hh-faq-no-results[hidden] {
    display: none !important;
}

.hh-faq-no-results > div {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 auto 13px;

    border-radius: 50%;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 21px;
}

.hh-faq-no-results h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 18px;
}

.hh-faq-no-results p {
    max-width: 390px;

    margin: 7px auto 0;

    color: var(--hh-muted);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   IMPORTANT INFORMATION
========================================================= */

.hh-faq-important-box {
    display: grid;

    grid-template-columns:
        66px
        minmax(0, 1fr);

    gap: 20px;

    max-width: 920px;

    margin: 0 auto;

    padding: 27px;

    border: 1px solid #ffd7bd;
    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #fff9f5,
            #ffffff
        );
}

.hh-faq-important-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    border-radius: 14px;

    background: #fff0e6;

    color: var(--hh-primary);

    font-size: 22px;
    font-weight: 800;
}

.hh-faq-important-box > div:last-child > span {
    display: block;

    margin-bottom: 6px;

    color: var(--hh-primary);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-faq-important-box h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 21px;
    line-height: 1.35;
}

.hh-faq-important-box p {
    max-width: 740px;

    margin: 9px 0 0;

    color: var(--hh-muted);

    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   QUICK LINKS SECTION HEADING
========================================================= */

.hh-faq-section-heading {
    max-width: 760px;

    margin-bottom: 25px;
}

.hh-faq-section-heading > span {
    display: block;

    margin-bottom: 7px;

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.hh-faq-section-heading h2 {
    margin: 0;

    color: var(--hh-navy);

    font-size: 27px;
    line-height: 1.3;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.hh-faq-quick-links {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;
}

.hh-faq-quick-links > a {
    display: flex;
    flex-direction: column;

    min-height: 190px;

    padding: 18px;

    border: 1px solid var(--hh-border);
    border-radius: 10px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hh-faq-quick-links > a:hover {
    border-color: #ffd3bb;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(7,28,75,.07);
}

.hh-faq-quick-links > a > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 15px;

    border-radius: 8px;

    background: var(--hh-primary-light);

    color: var(--hh-primary);

    font-size: 9px;
    font-weight: 800;
}

.hh-faq-quick-links strong {
    color: var(--hh-navy);

    font-size: 13px;
}

.hh-faq-quick-links small {
    margin-top: 6px;

    color: var(--hh-muted);

    font-size: 9px;
    line-height: 1.6;
}

.hh-faq-quick-links b {
    margin-top: auto;
    padding-top: 15px;

    color: var(--hh-primary);

    font-size: 9px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.hh-faq-final-cta {
    padding: 35px 0 70px;

    background: #ffffff;
}

.hh-faq-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 35px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #071c4b,
            #0b2c68
        );

    box-shadow:
        0 13px 35px rgba(7, 28, 75, .16);
}

.hh-faq-final-box > div:first-child {
    max-width: 680px;
}

.hh-faq-final-box > div:first-child > span {
    display: block;

    margin-bottom: 7px;

    color: #ffb789;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.hh-faq-final-box h2 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;
    line-height: 1.3;
}

.hh-faq-final-box p {
    max-width: 620px;

    margin: 9px 0 0;

    color: rgba(255,255,255,.74);

    font-size: 11px;
    line-height: 1.7;
}

.hh-faq-final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    flex-shrink: 0;
}

.hh-faq-final-primary,
.hh-faq-final-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 16px;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hh-faq-final-primary {
    background: var(--hh-primary);

    color: #ffffff;
}

.hh-faq-final-primary:hover {
    background: var(--hh-primary-hover);

    transform: translateY(-1px);
}

.hh-faq-final-secondary {
    border: 1px solid rgba(255,255,255,.27);

    background: rgba(255,255,255,.08);

    color: #ffffff;
}

.hh-faq-final-secondary:hover {
    background: rgba(255,255,255,.15);

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hh-faq-category-links {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .hh-faq-category-links a {
        border-bottom: 1px solid var(--hh-border);
    }

    .hh-faq-category-links a:nth-child(4n) {
        border-right: 0;
    }

    .hh-faq-quick-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .hh-faq-hero {
        padding:
            42px 0
            57px;
    }

    .hh-faq-category-links {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .hh-faq-category-links a:nth-child(4n) {
        border-right: 1px solid var(--hh-border);
    }

    .hh-faq-category-links a:nth-child(3n) {
        border-right: 0;
    }

    .hh-faq-final-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hh-faq-hero {
        padding:
            32px 0
            55px;
    }

    .hh-faq-hero h1 {
        font-size: 36px;
    }

    .hh-faq-hero-inner > p {
        font-size: 12px;
    }


    /* Search */

    .hh-faq-search {
        margin-top: 21px;
    }

    .hh-faq-search input {
        height: 48px;

        font-size: 12px;
    }


    /* Category nav */

    .hh-faq-category-navigation {
        margin-top: -20px;
    }

    .hh-faq-category-links {
        display: flex;

        gap: 8px;

        overflow-x: auto;

        padding: 10px;

        border-radius: 10px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .hh-faq-category-links::-webkit-scrollbar {
        display: none;
    }

    .hh-faq-category-links a {
        flex: 0 0 135px;

        min-height: 84px;

        border: 1px solid var(--hh-border) !important;
        border-radius: 8px;

        scroll-snap-align: start;
    }


    /* Content */

    .hh-faq-content {
        padding-top: 50px;
    }

    .hh-faq-categories {
        gap: 38px;
    }

    .hh-faq-category-header {
        grid-template-columns:
            44px
            minmax(0, 1fr);

        gap: 12px;
    }

    .hh-faq-category-icon {
        width: 42px;
        height: 42px;

        border-radius: 9px;
    }

    .hh-faq-category-header h2 {
        font-size: 18px;
    }


    /* FAQ item */

    .hh-faq-item summary {
        min-height: 56px;

        padding:
            14px
            47px
            14px
            14px;

        font-size: 10px;
    }

    .hh-faq-item summary::after {
        right: 13px;

        width: 25px;
        height: 25px;
    }

    .hh-faq-answer {
        padding:
            0
            14px
            15px;
    }

    .hh-faq-answer p {
        font-size: 10px;
    }


    /* Important */

    .hh-faq-important-box {
        grid-template-columns: 1fr;

        gap: 14px;

        padding: 21px;
    }

    .hh-faq-important-icon {
        width: 48px;
        height: 48px;
    }

    .hh-faq-important-box h2 {
        font-size: 18px;
    }


    /* Quick links */

    .hh-faq-section-heading h2 {
        font-size: 22px;
    }

    .hh-faq-quick-links {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .hh-faq-quick-links > a {
        min-height: 155px;

        padding: 16px;
    }


    /* Final CTA */

    .hh-faq-final-cta {
        padding-bottom: 55px;
    }

    .hh-faq-final-box {
        padding: 24px 20px;

        border-radius: 11px;
    }

    .hh-faq-final-box h2 {
        font-size: 22px;
    }

    .hh-faq-final-actions {
        width: 100%;
    }

    .hh-faq-final-primary,
    .hh-faq-final-secondary {
        flex: 1 1 145px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hh-faq-hero h1 {
        font-size: 32px;
    }

    .hh-faq-hero-meta {
        gap: 6px 11px;
    }

    .hh-faq-final-primary,
    .hh-faq-final-secondary {
        width: 100%;

        flex: none;
    }

}


/* =========================================================
   END FILE 27
========================================================= */