
:root {
    --color-background: #f8f9fa;
    
    --color-surface: #ffffff;
    
    --color-primary: #003580;
    
    --color-primary-hover: #00224f;
    
    --color-secondary: #febb02;
    
    --color-secondary-hover: #e6a300;
    
    --color-text: #212529;
    
    --color-text-muted: #6c757d;
    
    --color-border: #dee2e6;
    
    --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-headings: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --border-radius: 11px;
    
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-headings);
    
    color: var(--color-text);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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


.logo a span {
    color: var(--color-surface);
    
}



.header-main-content .hero-title {
    font-size: 3.0rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--color-surface);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 50px auto;
    font-weight: 400;
}


.search-box-wrapper {
    position: absolute;
    
    bottom: 0;
    
    left: 0;
    right: 0;
    transform: translateY(50%);
    
    z-index: 2;
    
}

.search-box {
    background-color: var(--color-secondary);
    padding: 5px 5px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 0;
    width: 100%;
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    
    gap: 8px;
}

.search-form input,
.search-form select {
    width: 100%;
    padding: 18px;
    
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-size: 1.1rem;
    
}


@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
        
    }
}


.search-box-wrapper-mobile {
    margin-top: 1.5rem;
    
}

.search-box-wrapper-mobile .search-box {
    background-color: var(--color-secondary);
    padding: 5px;
    border-radius: var(--border-radius);
    border: 0;
}

.search-box-wrapper-mobile .search-form {
    gap: 8px;
}

.search-box-wrapper-mobile .search-form button {
    padding: 16px;
}


.search-form button {
    padding: 16px 26px;
    background-color: var(--color-primary);
    
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: var(--color-primary-hover);
    
}


.cities-section {
    padding: 100px 0 60px 0;
    
}

.section-title {
    text-align: start;
    font-size: 2.5rem;
    margin-bottom: 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.city-card {
    background-color: var(--color-surface);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.2);
    
}

.city-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-text);
}

.city-count {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}


.results-section {
    padding: 10px 0;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.hotel-card {
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-image {
    height: 220px;
    position: relative;
    background-color: #eee;
    
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.hotel-stars {
    color: #ffb700;
    
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.view-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    
    color: white;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.view-link:hover {
    background-color: var(--color-primary-hover);
    
    color: white;
}


@media (min-width: 768px) {
    .search-form {
        grid-template-columns: 2fr 1fr auto;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.no-photo-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-color: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text-muted);
    font-size: 1.5rem;
}

.btn-contact {
    display: inline-block;
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-contact.call {
    background-color: var(--color-primary);
    color: white;
}


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


.btn-contact.whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-contact.whatsapp:hover {
    background-color: #20b856;
}

.btn-contact.email {
    background-color: #5865F2;
    color: white;
}

.btn-contact.email:hover {
    background-color: #4752c4;
}

.btn-contact.reserve {
    background-color: var(--color-primary);
    color: white;
}


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


.btn-contact.reserve-rate {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}


.btn-contact.reserve-rate:hover {
    background-color: var(--color-primary);
    color: white;
}





.seo-content {
    margin: 60px 0;
    line-height: 1.8;
}

.seo-content h2,
.seo-content h3,
.seo-content h4 {
    margin: 25px 0 15px 0;
}

.seo-content h2 {
    font-size: 2rem;
}

.seo-content h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    
}

.seo-content p {
    margin-bottom: 15px;
}

.seo-content a {
    text-decoration: underline;
}

.seo-content ul,
.seo-content ol {
    padding-left: 20px;
    
    margin-bottom: 15px;
}

.seo-content li {
    margin-bottom: 8px;
    padding-left: 5px;
    
}




.sb-footer-new {
    background-color: var(--color-primary);
    
    color: var(--color-surface);
    
    padding: 3rem 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--color-surface);
    
}

.sb-footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-surface);
    
    margin-bottom: 1rem;
}

.sb-footer-copyright {
    
    color: rgba(255, 255, 255, 0.7);
}

.sb-footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    
    color: var(--color-surface);
}

.sb-footer-links {
    list-style: none;
    padding: 0;
}

.sb-footer-links li a {
    color: var(--color-surface);
    
    text-decoration: none;
    transition: color 0.3s;
}

.sb-footer-links li a:hover {
    color: var(--color-secondary);
    
    text-decoration: underline;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 280px;
}

.footer-column.text-left {
    text-align: left;
}

.footer-column.text-right {
    text-align: right;
}

.btn-header-contact {
    background-color: var(--color-secondary) !important;
    color: #fff;
    padding: 0.1rem 0.6rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 17px;
    border-radius: 7px;
}

.btn-header-contact:hover {
    background-color: var(--color-secondary-hover) !important;
    
    color: #fff;
    
    transform: scale(1.05);
    
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    
}


.sub-nav-home {
    background-color: var(--color-primary);
    box-shadow: none;
    justify-content: flex-start !important;
    column-gap: 15px;
    
    padding: 15px;
    
}

.sub-nav {
    background-color: var(--color-primary);
    box-shadow: none;
    justify-content: flex-start !important;
    column-gap: 15px;
    padding: 15px;
    margin-bottom: 30px;
}

.sub-nav .container {
    display: flex;
    justify-content: flex-start;
    
    align-items: center;
    gap: 15px;
}

.sub-nav-link {
    padding: 11px 30px;
    
    color: #ffffff;
    
    font-weight: 400;
    
    font-size: 0.9rem;
    
    border-radius: 50px;
    
    transition: all 0.3s ease;
    
    background-color: transparent;
    border: 1px solid transparent;
    
}

.sub-nav-link {
    display: inline-flex;
    
    align-items: center;
    gap: 8px;
    
}

.sub-nav-link:hover {
    
    background-color: rgba(255, 255, 255, 0.1);
    
    border-color: rgba(255, 255, 255, 0.2);
    
    color: #ffffff;
    
}


.sub-nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    
    border: 1px solid #ffffff;
    
    color: #ffffff;
}

.sub-nav-link:active {
    transform: translateY(0);
}

.city-icon {
    width: 20px;
    
    height: 20px;
}

@media (max-width: 768px) {
    .footer-column {
        text-align: center !important;
        width: 100%;
    }
}


.flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag.english {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" width="60" height="30"><clipPath id="s"><path d="M0,0 v30 h60 v-30 z"/></clipPath><clipPath id="t"><path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z"/></clipPath><g clip-path="url(%23s)"><path d="M0,0 v30 h60 v-30 z" fill="%2300247d"/><path d="M0,0 L60,30 M60,0 L0,30" stroke="white" stroke-width="6"/><path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(%23t)" stroke="%23cf142b" stroke-width="4"/><path d="M30,0 v30 M0,15 h60" stroke="white" stroke-width="10"/><path d="M30,0 v30 M0,15 h60" stroke="%23cf142b" stroke-width="6"/></g></svg>');
}

.flag.spanish {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><rect width="60" height="30" fill="%23c60b1e"/><rect width="60" height="15" y="7.5" fill="%23ffc400"/></svg>');
}


.lang-selector {
    
    display: flex;
    gap: 6px;
}

.lang-flag-link {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.lang-flag-link.active {
    opacity: 1;
}

.lang-flag-link:not(.active):hover {
    opacity: 1;
}


.lang-selector-mobile {
    position: relative;
}

.selected-language-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 5px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: var(--color-surface);
    transition: transform 0.3s;
}

.lang-selector-mobile.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-options-mobile {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
    z-index: 1001;
    
}

.lang-selector-mobile.open .language-options-mobile {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    border-radius: var(--border-radius-sm, 8px);
}

.language-option:hover,
.language-option.active {
    background-color: var(--color-primary);
    color: var(--color-surface);
}

.scroll-top-hidden {
    display: none;
}

.sb-scroll-top-btn {
    
}


.main-header {
    padding: 10px 0;
    background-color: var(--color-primary);
    color: var(--color-surface);
    z-index: 1000;
    position: relative;
    
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .main-header .container .logo {
        order: 1;
        
    }

    .main-header .container .header-right {
        order: 2;
        
    }

    .hero-quick-links-mobile {
        text-align: left;
        
    }
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1051;
    
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-surface);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


.header-main-content {
    text-align: start;
    margin-top: 40px;
    margin-bottom: 30px;
}


.side-menu {
    position: fixed;
    top: 0;
    width: 320px;
    max-width: 90%;
    height: 100%;
    background-color: var(--color-surface);
    color: var(--color-text);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--color-primary);
    color: var(--color-surface);
    flex-shrink: 0;
}

.side-menu-header .logo a {
    font-size: 1.5rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--color-surface);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.side-menu-links {
    list-style: none;
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.side-menu-links li a {
    display: block;
    padding: 10px 0;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.side-menu-links li a:hover {
    color: var(--color-primary);
}

.side-menu-links hr {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: 10px 0;
}

.menu-section-title {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 0 5px 0;
}


.side-menu-links li a.featured-hotel-link-new {
    position: relative;
    height: 160px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin-bottom: 15px;
    
}

.featured-hotel-link-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.featured-hotel-link-new .name,
.featured-hotel-link-new .city {
    position: relative;
    z-index: 1;
}

.featured-hotel-link-new .name {
    font-weight: bold;
    font-size: 0.9rem;
}

.featured-hotel-link-new .city {
    font-size: 0.8rem;
    align-self: flex-end;
    
}

.side-menu-links li .featured-hotel-link-new:hover {
    color: white;
    
}

.menu-anunciate-link {
    background-color: var(--color-secondary);
    color: #fff !important;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: bold !important;
}

.menu-anunciate-link:hover {
    background-color: var(--color-secondary-hover);
    color: #fff !important;
}

.legal-link-item a {
    font-size: 0.8rem !important;
    color: var(--color-text-muted) !important;
    padding: 6px 0 !important;
}


.menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.breadcrumb {
    margin-top: 10px;
}




.main-header .container {
    justify-content: space-between;
}

.logo {
    order: 2;
}

.header-right {
    order: 1;
}

.hamburger-btn {
    order: 3;
}

.mobile-only {
    display: flex !important;
}


.desktop-only {
    display: none !important;
}

.side-menu {
    right: 0;
    left: auto;
    transform: translateX(100%);
}


@media (min-width: 769px) {
    .main-header .container {
        justify-content: space-between;
    }

    .logo {
        order: 2;
        flex: 1;
        text-align: center;
    }

    .header-right {
        order: 3;
    }

    .hamburger-btn {
        order: 1;
    }

    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: flex !important;
    }

    .side-menu {
        left: auto;
        right: 0;
        transform: translateX(100%);
    }

    
    .main-header {
        min-height: 140px;
    }

    .breadcrumb {
        margin-top: 40px;
    }
}


.header-spacer {
    height: 45px;
    
}



.hotel-card .hotel-image {
    aspect-ratio: 4 / 3;
}

.hotel-card .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-card .hotel-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card .hotel-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.hotel-card .view-link {
    margin-top: auto;
}

@media (min-width: 576px) {
    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hotel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .hotel-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.form-group {
    margin-bottom: 1.75rem;
}

.contact-form-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-surface);
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    appearance: none;
    border-radius: 8px;
    
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    outline: none;
}


.hotel-group {
    margin-bottom: 4rem;
}

.hotel-group-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.hotel-group-title span {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 400;
}


.see-more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    border-style: dashed;
    box-shadow: none;
}

.see-more-card:hover {
    transform: translateY(0);
    
    background-color: #e9ecef;
    border-color: var(--color-primary);
}

.see-more-content {
    text-align: center;
    color: var(--color-text-muted);
}

.see-more-icon {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1;
}

.see-more-text {
    font-weight: bold;
    margin-top: 0.5rem;
}


@media (max-width: 768px) {

    
    main>.container:has(.contact-form-card) {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-form-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}


.custom-marker {
    position: absolute;
    transform: translateX(-50%);
    cursor: pointer;
}

.price-tag {
    background-color: var(--color-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.custom-marker:hover .price-tag {
    transform: scale(1.1);
    background-color: var(--color-primary-hover);
}


.custom-infowindow {
    position: absolute;
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 220px;
    transform: translateX(-50%);
    z-index: 10;
    overflow: hidden;
}

.custom-infowindow-image {
    height: 120px;
    background-color: #eee;
}

.custom-infowindow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-infowindow-content {
    padding: 1rem;
}

.custom-infowindow-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.custom-infowindow-content a {
    font-weight: bold;
    font-size: 0.9rem;
}

.custom-infowindow-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    z-index: 1;
}

.custom-infowindow-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.cluster-marker {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}


.header-logo {
    height: 32px;
    
    width: auto;
    vertical-align: middle;
    
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;

}

.footer-logo:hover {
    opacity: 1;
}


@media (min-width: 992px) {
    .header-logo {
        height: 32px;
        
    }

    .main-header .logo {
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: start;
    }

    .footer-logo {
        margin-left: 0;
        margin-right: 0;
    }
}




.city-page-header {
    display: block;
    
    margin-bottom: 2rem;
    padding-top: 1rem;
}

@media (min-width: 992px) {
    .city-page-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        
    }
}

.view-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 992px) {
    .view-controls {
        flex-direction: row;
        align-items: center;
    }
}


.sort-dropdown {
    position: relative;
}

.sort-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    transition: background-color 0.2s, box-shadow 0.2s;
    width: 100%;
    
}

@media (min-width: 992px) {
    .sort-trigger {
        width: auto;
    }
}

.sort-trigger:hover {
    background-color: #f1f3f5;
}

.sort-trigger[aria-expanded="true"] {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.sort-trigger-icon,
.sort-trigger-arrow {
    color: var(--color-text-muted);
}

.sort-trigger-text {
    white-space: nowrap;
    
}

.sort-trigger-arrow {
    margin-left: auto;
    transition: transform 0.2s;
}

.sort-trigger[aria-expanded="true"] .sort-trigger-arrow {
    transform: rotate(180deg);
}

.sort-options {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    z-index: 10;
    width: 100%;
    
}

.sort-options.open {
    display: block;
}

.sort-option {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.sort-option:hover {
    background-color: #f1f3f5;
}

.sort-option.active {
    color: var(--color-primary);
    font-weight: 700;
}



.city-page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}


.view-switcher {
    display: flex;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 5px;
    flex-shrink: 0;
    
}

.view-btn {
    background-color: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
}

.view-btn:hover:not(.active) {
    background-color: #e9ecef;
}

.view-btn.active {
    background-color: var(--color-surface);
    color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.view-btn:disabled {
    color: #ced4da;
    cursor: not-allowed;
}


.hotel-item {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    
}

.hotel-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}


.view-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.view-list .hotel-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    
}

.view-list .hotel-item-image {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 15px;
}

.view-list .hotel-item-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.view-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.view-grid .hotel-item {
    display: flex;
    flex-direction: column;
}

.view-grid .hotel-item-image {
    height: 220px;
}

.view-grid .hotel-item-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    
}


.hotel-item-image {
    display: block;
    background-color: #eee;
}

.hotel-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-item-title-row {
    display: flex;
    flex-wrap: wrap;
    
    align-items: baseline;
    
    gap: 0 0.75rem;
    
    margin-bottom: 0.5rem;
}

.hotel-item-name {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.hotel-item-location {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-link {
    color: var(--color-text-muted);
    text-decoration: underline;
}

.show-map-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

.hotel-item-services {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    
}

.service-tag {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background-color: var(--color-background);
    padding: 4px 8px;
    border-radius: 6px;
}


.hotel-item-rate-info {
    margin-top: auto;
    
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rate-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rate-room-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.rate-name {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.rate-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    flex-shrink: 0;
    
}


.hotel-item-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.hotel-item-button:hover {
    background-color: var(--color-primary-hover);
    color: white;
}

.hotel-item-button svg {
    width: 1em;
    height: 1em;
}

.view-list .hotel-item-button {
    margin-left: auto;
    
    width: fit-content;
    
}


@media (max-width: 768px) {
    .city-page-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .city-page-titles h1 {
        font-size: 1.8rem;
    }

    .city-page-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .view-switcher {
        width: 100%;
        justify-content: space-around;
        padding: 3px;
    }

    .view-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        gap: 0.3rem;
    }

    
    
    .view-switcher {
        display: none !important;
    }

    
    .view-list,
    .view-grid {
        grid-template-columns: 1fr;
        
    }

    .view-list .hotel-item {
        display: flex;
        flex-direction: column;
        
        padding: 0;
        
    }

    .view-list .hotel-item-image {
        width: 100%;
        height: 200px;
        margin: 0;
        
        border-radius: 0;
        
    }

    .view-list .hotel-item-content {
        padding: 15px;
        
        width: 100%;
    }
}


.view-list .hotel-item-rate-info {
    flex-direction: row;
    
}

.view-grid .hotel-item-rate-info {
    flex-direction: column;
    
    align-items: stretch;
    
}


.view-grid .rate-price {
    text-align: right;
}





.city-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.city-page-titles h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.city-page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}


.view-switcher {
    display: flex;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 5px;
    flex-shrink: 0;
    
}

.view-btn {
    background-color: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
}

.view-btn:hover:not(.active) {
    background-color: #e9ecef;
}

.view-btn.active {
    background-color: var(--color-surface);
    color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.view-btn:disabled {
    color: #ced4da;
    cursor: not-allowed;
}


.hotel-list-item {
    display: none;
    
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    grid-template-columns: 250px 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.hotel-list-item-image {
    width: 250px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
}

.hotel-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-list-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hotel-list-item-address {
    color: var(--color-text-muted);
}

.hotel-list-item-action {
    text-align: right;
}


.view-list .hotel-list-item {
    display: grid;
}


.view-list .hotel-card {
    display: none;
}

.view-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.view-grid .hotel-list-item {
    display: none;
}

.view-grid .hotel-card {
    display: flex;
}



.view-map #hotel-view-container {
    display: none;
}




.hotel-title-with-stars {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    
}

.hotel-stars-large {
    font-size: 1.5rem;
    color: #ffb700;
}


.help-badge {
    background-color: var(--color-secondary);
    
    color: #003580;
    
    font-size: 0.7rem;
    padding: 2px 1px;
    border-radius: 4px;
    position: relative;
    font-weight: 800;
    margin-left: 5px;
    display: inline-block;
}

.help-badge::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1px;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 11px solid transparent;
    border-top: 6px solid var(--color-secondary);
    transform: skewX(16deg);
}


.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}