/* ===== GLOBAL ===== */
:root {
    --primary-dark: #1a2238;
    --primary-blue: #1e3a5f;
    --accent-orange: #e8a020;
    --accent-yellow: #f5a623;
    --accent-blue: #2980b9;
    --text-dark: #333;
    --text-muted: #777;
    --bg-light: #f5f5f5;
    --category-blue: #2c6fbb;
    --category-gradient: linear-gradient(to top, #efefef, #f5f5f5);
    --footer-dark: #1a1a2e;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

/* Elements waiting to animate */
.anim {
    opacity: 1; /* voler a opacity 0 antes de culminar el proyecto*/
}

/* Triggered state */
.anim.anim-visible {
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim.fade-up.anim-visible       { animation-name: fadeInUp; }
.anim.fade-down.anim-visible     { animation-name: fadeInDown; }
.anim.fade-left.anim-visible     { animation-name: fadeInLeft; }
.anim.fade-right.anim-visible    { animation-name: fadeInRight; }
.anim.fade-in.anim-visible       { animation-name: fadeIn; }
.anim.scale-in.anim-visible      { animation-name: scaleIn; }

/* Duration variants */
.anim.anim-visible { animation-duration: 0.6s; }
.anim-slow.anim-visible  { animation-duration: 0.9s; }
.anim-fast.anim-visible  { animation-duration: 0.4s; }

/* Delay helpers */
.anim-d1 { animation-delay: 0.1s !important; }
.anim-d2 { animation-delay: 0.2s !important; }
.anim-d3 { animation-delay: 0.3s !important; }
.anim-d4 { animation-delay: 0.4s !important; }
.anim-d5 { animation-delay: 0.5s !important; }
.anim-d6 { animation-delay: 0.6s !important; }

/* Banner always animates on load */
.page-banner .page-banner-overlay h1,
.page-banner .page-banner-overlay .breadcrumb-text,
.page-banner .breadcrumb {
    animation: fadeInDown 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.page-banner .page-banner-overlay .breadcrumb-text,
.page-banner .breadcrumb {
    animation-delay: 0.15s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: #ccc;
    font-size: 0.75rem;
    padding: 6px 0;
    letter-spacing: 0.5px;
}

.top-bar a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar .separator {
    margin: 0 8px;
    color: #555;
}

.currency-selector span {
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.currency-selector span:hover {
    color: #fff;
}

.currency-selector span.active {
    color: var(--accent-yellow);
    font-weight: 600;
}

/* ===== NAVBAR ===== */
.main-navbar {
    background: var(--primary-blue);
    padding: 0;
}

.main-navbar .navbar-brand {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.main-navbar .navbar-brand i {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1rem;
}

.main-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 18px 15px !important;
    letter-spacing: 0.5px;
    transition: color 0.3s, background 0.3s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

/* ===== NAVBAR DROPDOWNS ===== */
.main-navbar .dropdown-toggle::after {
    font-size: 0.65rem;
    vertical-align: 0.15em;
    margin-left: 5px;
    border-top-width: 0.35em;
    border-right-width: 0.35em;
    border-left-width: 0.35em;
}

.main-navbar .dropdown-menu {
    background: var(--primary-dark);
    border: none;
    border-radius: 0 0 4px 4px;
    margin-top: 0;
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    animation: fadeInDown 0.25s ease;
}

.main-navbar .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 9px 22px;
    transition: all 0.25s ease;
}

.main-navbar .dropdown-menu .dropdown-item:hover,
.main-navbar .dropdown-menu .dropdown-item:focus {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding-left: 26px;
}

.main-navbar .dropdown-menu .dropdown-item:active {
    background: var(--accent-orange);
    color: #fff;
}

.main-navbar .dropdown-menu .dropdown-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 5px 0;
}

/* Dropdown hover open on desktop */
@media (min-width: 992px) {
    .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .main-navbar .nav-item.dropdown:hover > .dropdown-toggle {
        color: #fff !important;
        background: rgba(255,255,255,0.1);
    }
}

.btn-submit-listing {
    background: var(--accent-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.btn-submit-listing:hover {
    background: #d4911a;
    color: #fff;
}

/* ===== MAP BANNER ===== */
.map-banner {
    width: 100%;
    height: 480px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.map-banner iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.map-fullscreen-btn:hover {
    background: rgba(0,0,0,0.7);
}

/* ===== SEARCH / RESERVATION SECTION ===== */
.reservation-section {
    background: var(--category-blue);
    padding: 30px 0 35px;
    margin-top: -1px;
}

.reservation-section h2 {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 25px;
}

.search-bar-wrapper {
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-bar-wrapper .menu-icon {
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    margin-right: 5px;
}

.search-bar-wrapper .form-select,
.search-bar-wrapper .form-control {
    border: none;
    border-radius: 3px;
    height: 45px;
    font-size: 0.9rem;
    color: #555;
}

.search-bar-wrapper .form-select {
    background-color: #fff;
}

.search-bar-wrapper .input-with-icon {
    position: relative;
    flex: 1;
    min-width: 180px;
}

.search-bar-wrapper .input-with-icon .form-control {
    padding-right: 35px;
}

.search-bar-wrapper .input-with-icon .icon-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.btn-find {
    background: var(--accent-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-find:hover {
    background: #d4911a;
    color: #fff;
}

/* ===== BREADCRUMB / TITLE ===== */
.listing-header {
    text-align: center;
    padding: 30px 0 20px;
}

.listing-header h3 {
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.listing-header h3 span {
    color: var(--category-blue);
    font-weight: 400;
}

/* ===== RESULTS INFO BAR ===== */
.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.results-bar .result-count strong {
    color: var(--category-blue);
}

.results-bar .view-options .btn {
    padding: 4px 8px;
    font-size: 0.8rem;
    color: #aaa;
    border: 1px solid #ddd;
    background: #fff;
}

.results-bar .view-options .btn.active {
    color: var(--category-blue);
    border-color: var(--category-blue);
}

.results-bar .sort-select {
    font-size: 0.8rem;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
}

/* ===== SIDEBAR CATEGORIES ===== */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 2px;
}

.sidebar-categories li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px;
    transition: all 0.3s;
}

.sidebar-categories li a i {
    width: 22px;
    margin-right: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.sidebar-categories li a.cat-all,
.sidebar-categories li a.cat-accommodation,
.sidebar-categories li a.cat-business,
.sidebar-categories li a.cat-education,
.sidebar-categories li a.cat-references,
.sidebar-categories li a.cat-automotive,
.sidebar-categories li a.cat-fitness,
.sidebar-categories li a.cat-sports,
.sidebar-categories li a.cat-regional,
.sidebar-categories li a.cat-hotels,
.sidebar-categories li a.cat-technology {
    background: var(--category-gradient);
    color: var(--text-dark);
}

.sidebar-categories li a:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

.sidebar-categories li a.active {
    background: var(--category-blue) !important;
    color: #fff !important;
}

/* ===== LISTING CARDS ===== */
.listing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.listing-card-link:hover {
    color: inherit;
}

.listing-card {
    margin-bottom: 30px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.listing-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
}

.listing-card .card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.listing-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.listing-card .badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.listing-card .card-body {
    padding: 15px 5px;
}

.listing-card .card-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.listing-card .card-category.cat-automotive { color: #34495e; }
.listing-card .card-category.cat-beauty { color: #e8a020; }
.listing-card .card-category.cat-entertainment { color: #2c6fbb; }
.listing-card .card-category.cat-music { color: #2c6fbb; }
.listing-card .card-category.cat-travel { color: #e8a020; }
.listing-card .card-category.cat-education { color: #8e44ad; }
.listing-card .card-category.cat-business { color: #2c6fbb; }
.listing-card .card-category.cat-technology { color: #c0392b; }
.listing-card .card-category.cat-woman { color: #e74c3c; }

.listing-card .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.listing-card .card-address {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== LOAD MORE BUTTON ===== */
.btn-load-more {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #ddd;
    background: #fff;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    border-color: var(--category-blue);
    color: var(--category-blue);
}

/* ===== LIST VIEW ===== */
.listing-list-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.listing-list-item-link:hover {
    color: inherit;
}

.listing-list-view {
    margin-top: 5px;
}

.listing-list-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.listing-list-item:first-child {
    padding-top: 10px;
}

.listing-list-img {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
}

.listing-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.listing-list-item:hover .listing-list-img img {
    transform: scale(1.05);
}

.listing-list-img .badge-featured {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.listing-list-content {
    flex: 1;
    min-width: 0;
}

.listing-list-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.listing-list-category.cat-automotive { color: #34495e; }
.listing-list-category.cat-beauty { color: #e8a020; }
.listing-list-category.cat-entertainment { color: #2c6fbb; }
.listing-list-category.cat-music { color: #2c6fbb; }
.listing-list-category.cat-travel { color: #e8a020; }
.listing-list-category.cat-education { color: #8e44ad; }
.listing-list-category.cat-business { color: #2c6fbb; }
.listing-list-category.cat-technology { color: #c0392b; }
.listing-list-category.cat-woman { color: #e74c3c; }

.listing-list-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.listing-list-address {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.listing-list-phone {
    margin-left: 12px;
    white-space: nowrap;
}

.listing-list-phone i {
    font-size: 0.7rem;
    margin-right: 3px;
    color: var(--category-blue);
}

.listing-list-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== LISTING DETAIL PAGE ===== */
.detail-page {
    background: #fff;
}

/* Header Card */
.detail-header-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.detail-gallery {
    width: 100%;
    height: 320px;
    background: #e0e0e0;
    overflow: hidden;
}

.detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-header-body {
    padding: 20px 25px;
}

.detail-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: inline-block;
}

.detail-category.cat-automotive { color: #34495e; }
.detail-category.cat-beauty { color: #e8a020; }
.detail-category.cat-entertainment { color: #2c6fbb; }
.detail-category.cat-music { color: #2c6fbb; }
.detail-category.cat-travel { color: #e8a020; }
.detail-category.cat-education { color: #8e44ad; }
.detail-category.cat-business { color: #2c6fbb; }
.detail-category.cat-technology { color: #c0392b; }
.detail-category.cat-woman { color: #e74c3c; }

.detail-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.detail-badge-open {
    background: #27ae60;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 3px;
    white-space: nowrap;
}

.detail-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.detail-address i {
    color: var(--category-blue);
    margin-right: 5px;
}

.detail-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.detail-contact-row i {
    color: var(--category-blue);
    margin-right: 5px;
    font-size: 0.78rem;
}

.detail-rating {
    color: var(--accent-orange);
    font-size: 0.85rem;
}

.detail-rating .rating-text {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-left: 6px;
}

/* Detail Sections */
.detail-section {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
}

.detail-section-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--category-blue);
}

.detail-section-title i {
    color: var(--category-blue);
}

.detail-section p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Service Cards */
.service-card {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 5px;
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--category-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.service-info h6 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.service-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 6px;
}

.service-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--category-blue);
    background: rgba(44, 111, 187, 0.1);
    padding: 2px 10px;
    border-radius: 3px;
}

/* Photo Gallery Grid */
.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-thumb {
    height: 130px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}

/* Reviews */
.review-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-avatar {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.review-body {
    flex: 1;
}

.review-body strong {
    font-size: 0.88rem;
    color: var(--text-dark);
}

.review-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--accent-orange);
    font-size: 0.72rem;
    margin-bottom: 6px;
}

.review-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sidebar Cards */
.detail-sidebar-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 22px;
    margin-bottom: 25px;
}

.sidebar-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--category-blue);
}

.sidebar-card-title i {
    color: var(--category-blue);
}

/* Business Hours */
.business-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px dashed #eee;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours li.closed span:last-child {
    color: #e74c3c;
    font-weight: 700;
}

/* Sidebar Map */
.sidebar-map {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    background: #e0e0e0;
}

.sidebar-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Sidebar Contact Form */
.sidebar-contact-form .form-control {
    font-size: 0.82rem;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #ddd;
    padding: 10px 14px;
}

.sidebar-contact-form .form-control:focus {
    border-color: var(--category-blue);
    box-shadow: 0 0 0 2px rgba(44, 111, 187, 0.15);
}

.btn-send-message {
    background: var(--category-blue);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-send-message:hover {
    background: #245da0;
    color: #fff;
}

/* Social Share */
.detail-social-share {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: opacity 0.3s, transform 0.3s;
}

.share-btn:hover {
    opacity: 0.85;
    color: #fff;
    transform: translateY(-2px);
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-google { background: #dd4b39; }
.share-linkedin { background: #0077b5; }
.share-pinterest { background: #bd081c; }

/* Detail Responsive */
@media (max-width: 767.98px) {
    .detail-gallery {
        height: 220px;
    }
    .detail-header-body {
        padding: 15px;
    }
    .detail-title {
        font-size: 1.1rem;
    }
    .detail-contact-row {
        flex-direction: column;
        gap: 6px;
    }
    .detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-thumb {
        height: 100px;
    }
    .review-item {
        flex-direction: column;
        gap: 10px;
    }
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--footer-dark);
    color: #aaa;
    padding: 50px 0 0;
    font-size: 0.85rem;
}

.site-footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-brand i {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1rem;
}

.footer-brand span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.site-footer p {
    color: #888;
    line-height: 1.7;
    font-size: 0.82rem;
}

.btn-read-more {
    background: var(--category-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    border: none;
    border-radius: 3px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background: #2471a3;
    color: #fff;
}

.footer-categories-list {
    list-style: none;
    padding: 0;
}

.footer-categories-list li {
    padding: 4px 0;
}

.footer-categories-list li a {
    color: #888;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s;
}

.footer-categories-list li a:hover {
    color: var(--accent-yellow);
}

.footer-categories-list li a i {
    color: var(--accent-yellow);
    margin-right: 8px;
    font-size: 0.7rem;
}

.footer-contact h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-contact .contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact .contact-info li {
    padding: 3px 0;
    font-size: 0.82rem;
    color: #888;
}

.footer-contact .contact-info li span.label {
    color: #aaa;
    font-weight: 600;
    min-width: 60px;
    display: inline-block;
}

.footer-contact .contact-info li a {
    color: var(--accent-yellow);
    text-decoration: none;
}

.footer-contact .contact-info li a:hover {
    text-decoration: underline;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: #111;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.75rem;
    color: #666;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333;
    color: #aaa;
    margin-left: 5px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-yellow);
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .main-navbar .nav-link {
        padding: 10px 15px !important;
    }
    .search-bar-wrapper {
        flex-direction: column;
    }
    .search-bar-wrapper .form-select,
    .search-bar-wrapper .form-control,
    .search-bar-wrapper .input-with-icon,
    .btn-find {
        width: 100%;
    }
    .map-banner {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .top-bar .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .listing-header h3 {
        font-size: 1rem;
    }
    .results-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .sidebar-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 25px;
    }
    .sidebar-categories li {
        margin-bottom: 0;
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    .sidebar-categories li a {
        padding: 10px 12px;
        font-size: 0.72rem;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    /* List view responsive */
    .listing-list-item {
        flex-direction: column;
        gap: 12px;
    }
    .listing-list-img {
        width: 100%;
        height: 200px;
    }
    .listing-list-phone {
        display: block;
        margin-left: 0;
        margin-top: 3px;
    }
}

@media (max-width: 575.98px) {
    .reservation-section h2 {
        font-size: 1.1rem;
    }
}

/* ===== ERROR 404 SECTION ===== */
.error-section {
    padding: 60px 0 50px;
}

.error-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.error-code {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 10rem;
    line-height: 1;
    color: var(--category-blue);
    letter-spacing: -5px;
}

.error-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 20px;
}

.error-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.error-divider {
    max-width: 700px;
    margin: 0 auto 35px;
    border-color: #e0e0e0;
}

.error-search {
    max-width: 450px;
    margin: 0 auto 25px;
}

.error-search-bar .form-control {
    border: 1px solid #e0e0e0;
    border-right: none;
    font-size: 0.85rem;
    padding: 10px 15px;
    height: auto;
}

.error-search-bar .form-control:focus {
    border-color: var(--category-blue);
    box-shadow: none;
}

.btn-error-search {
    background: var(--category-blue);
    color: #fff;
    border: 1px solid var(--category-blue);
    padding: 10px 18px;
    transition: background 0.3s;
}

.btn-error-search:hover {
    background: #2471a3;
    color: #fff;
}

.btn-back-home {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-back-home:hover {
    background: #d4911a;
    color: #fff;
}

@media (max-width: 767.98px) {
    .error-code {
        font-size: 6rem;
    }
    .error-label {
        font-size: 2rem;
    }
    .error-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .error-code {
        font-size: 4.5rem;
    }
    .error-label {
        font-size: 1.5rem;
    }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    width: 100%;
    height: 250px;
    background: url('../img/banner.jpg') center center / cover no-repeat;
    position: relative;
}

.page-banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner h1 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.page-banner .breadcrumb-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

.page-banner .breadcrumb-text a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: color 0.3s;
}

.page-banner .breadcrumb-text a:hover {
    color: #fff;
}

/* ===== AUTH CARD ===== */
.auth-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.auth-card-header {
    background: var(--primary-blue);
    color: #fff;
    padding: 25px 30px;
}

.auth-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-card-header p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.auth-card-body {
    padding: 30px;
}

.auth-card-body .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.auth-card-body .input-group-text {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-right: none;
    color: #999;
    font-size: 0.85rem;
}

.auth-card-body .form-control {
    border: 1px solid #e0e0e0;
    border-left: none;
    font-size: 0.85rem;
    padding: 10px 15px;
    height: auto;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-card-body .form-control:focus {
    border-color: var(--category-blue);
    box-shadow: none;
}

.auth-card-body .form-control:focus + .input-group-text,
.auth-card-body .input-group:focus-within .input-group-text {
    border-color: var(--category-blue);
}

.auth-card-body .form-check-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.auth-card-body .form-check-input:checked {
    background-color: var(--category-blue);
    border-color: var(--category-blue);
}

.forgot-link {
    font-size: 0.82rem;
    color: var(--category-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--accent-orange);
}

/* ===== PASSWORD TOGGLE ===== */
.btn-toggle-password {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-left: none;
    color: #999;
    font-size: 0.85rem;
    padding: 0 12px;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-toggle-password:hover {
    color: var(--category-blue);
    background: #f0f0f0;
}

.btn-auth-submit {
    background: var(--accent-orange);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px;
    border: none;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-auth-submit:hover {
    background: #d4911a;
    color: #fff;
}

/* ===== AUTH DIVIDER ===== */
.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    background: #fff;
    padding: 0 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ===== SOCIAL LOGIN ===== */
.social-login {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-social:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    color: #fff;
}

.btn-facebook { background: #3b5998; }
.btn-google { background: #dd4b39; }
.btn-twitter { background: #1da1f2; }
.btn-linkedin { background: #0077b5; }

.auth-footer-text {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.auth-footer-text a {
    color: var(--category-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-footer-text a:hover {
    color: var(--accent-orange);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #888;
}
