/*--------------------------------------------------------------
# Catalog Page Styles - BS Resort Center
--------------------------------------------------------------*/
:root {
    --catalog-gradient:    linear-gradient(135deg, #0E6F9E, #17a2b8);
    --catalog-shadow:      rgba(0,0,0,0.07);
    --catalog-shadow-lg:   rgba(14,111,158,0.18);
    --catalog-radius:      1.25rem;
    --catalog-accent:      #0E6F9E;
    --catalog-accent-alt:  #17a2b8;
}

/*--------------------------------------------------------------
  FILTER PANEL
--------------------------------------------------------------*/
.filter-panel {
    top: 120px;
    background: #fff;
    border: 1px solid rgba(14,111,158,0.10);
    border-radius: var(--catalog-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--catalog-shadow);
    z-index: 900;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f8f9fa;
}

.filter-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--catalog-gradient);
}

.filter-panel::-webkit-scrollbar { width: 6px; }
.filter-panel::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 0 1rem 1rem 0;
    margin: 1rem 0;
}
.filter-panel::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 10px;
    border: 2px solid #f8f9fa;
}
.filter-panel::-webkit-scrollbar-thumb:hover {
    background-color: var(--catalog-accent);
}

.filter-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f5;
}

.filter-header h4 {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.75rem;
}

.filter-label i {
    font-size: 0.88rem;
    color: var(--catalog-accent);
}

.input-group-custom .form-control {
    border: 2px solid #e9ecef;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 0.65rem 0 0 0.65rem;
    transition: border-color 0.25s;
}
.input-group-custom .form-control:focus {
    border-color: var(--catalog-accent);
    box-shadow: 0 0 0 3px rgba(14,111,158,0.10);
    outline: none;
}
.input-group-custom .btn-primary {
    background: var(--catalog-gradient);
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 0 0.65rem 0.65rem 0;
    transition: all 0.25s;
    box-shadow: none;
}
.input-group-custom .btn-primary:hover {
    filter: brightness(0.92);
    transform: translateX(1px);
}

/*--------------------------------------------------------------
  CATEGORY RADIO BUTTONS
--------------------------------------------------------------*/
.category-options {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.category-radio-wrapper { position: relative; }

.category-radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0; width: 0;
}

.category-radio-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 0.65rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
    color: #495057;
}

.category-radio-label:hover {
    background: rgba(14,111,158,0.05);
    color: var(--catalog-accent);
    border-color: rgba(14,111,158,0.15);
}

.radio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-icon i {
    font-size: 0.65rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.category-radio-input:checked + .category-radio-label {
    background: linear-gradient(135deg, rgba(14,111,158,0.08), rgba(23,162,184,0.08));
    color: var(--catalog-accent);
    font-weight: 600;
    border-color: rgba(14,111,158,0.25);
}
.category-radio-input:checked + .category-radio-label .radio-icon {
    background: var(--catalog-gradient);
    border-color: transparent;
}
.category-radio-input:checked + .category-radio-label .radio-icon i {
    opacity: 1;
    transform: scale(1);
}

.clear-filter-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #dc3545;
    background: linear-gradient(135deg, #fff5f5, #fef2f2);
    border: 1px solid #fecaca;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.25s ease;
    width: fit-content;
}
.clear-filter-link:hover {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(220,53,69,0.25);
}

/*--------------------------------------------------------------
  FILTER SELECTS
--------------------------------------------------------------*/
.form-select-custom {
    border: 2px solid #e9ecef;
    padding: 0.55rem 2.2rem 0.55rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 0.65rem;
    cursor: pointer;
    background-position: right 0.75rem center;
    transition: border-color 0.25s;
}
.form-select-custom:focus {
    border-color: var(--catalog-accent);
    box-shadow: 0 0 0 3px rgba(14,111,158,0.10);
    outline: none;
}

/*--------------------------------------------------------------
  PRICE RANGE SLIDER
--------------------------------------------------------------*/
.price-range-wrapper { padding: 0.25rem 0; }

.price-range-input {
    width: 100%;
    cursor: pointer;
    accent-color: var(--catalog-accent);
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}
.price-range-labels .min-price,
.price-range-labels .max-price {
    font-size: 0.75rem;
    color: #adb5bd;
}
.price-range-labels .current-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--catalog-accent);
}

/*--------------------------------------------------------------
  FILTER ACTION BUTTONS
--------------------------------------------------------------*/
.btn-apply-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--catalog-gradient);
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(14,111,158,0.28);
}
.btn-apply-filters:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,111,158,0.38);
}

.btn-clear-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: #fff;
    border: 2px solid #dee2e6;
    color: #6c757d;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}
.btn-clear-filters:hover {
    background: #f8f9fa;
    color: #343a40;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

/*--------------------------------------------------------------
  ACCOMMODATION CARD
--------------------------------------------------------------*/
.accommodation-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--catalog-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px var(--catalog-shadow);
    border: 1px solid rgba(14,111,158,0.07);
    transition: all 0.3s ease;
    position: relative;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--catalog-gradient);
    z-index: 1;
}

.accommodation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px var(--catalog-shadow-lg);
    border-color: rgba(14,111,158,0.18);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.accommodation-card:hover .card-image {
    transform: scale(1.06);
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(1,30,44,0.45) 100%);
    pointer-events: none;
}

.card-badge-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    color: var(--heading-color);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.73rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.card-badge-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--catalog-gradient);
    color: #fff;
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(14,111,158,0.35);
    z-index: 10;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.card-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.badge-status {
    font-weight: 600;
    font-size: 0.73rem;
    padding: 0.5em 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.price-period {
    font-weight: 400;
    font-size: 0.8em;
    opacity: 0.9;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.card-title {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.88rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.55;
    flex-grow: 1;
}

.card-footer-content {
    border-top: 2px solid #f1f3f5;
    padding-top: 1rem;
    margin-top: 1rem;
}

.card-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: #6c757d;
    font-weight: 500;
    background: #f8f9fa;
    padding: 0.3rem 0.7rem;
    border-radius: 2rem;
    border: 1px solid #e9ecef;
}
.meta-item i {
    color: var(--catalog-accent);
}

.btn-card-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: transparent;
    border: 2px solid var(--catalog-accent);
    color: var(--catalog-accent);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-card-details:hover {
    background: var(--catalog-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(14,111,158,0.28);
    transform: translateY(-2px);
}
.btn-card-details i {
    transition: transform 0.25s;
}
.btn-card-details:hover i {
    transform: translateX(3px);
}

/*--------------------------------------------------------------
  EMPTY STATE
--------------------------------------------------------------*/
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: var(--catalog-radius);
    border: 2px dashed rgba(14,111,158,0.2);
    box-shadow: 0 4px 16px var(--catalog-shadow);
}

.empty-state-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #adb5bd;
}

.empty-state-title {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.btn-empty-state {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--catalog-gradient);
    color: #fff;
    padding: 0.65rem 1.75rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(14,111,158,0.28);
}
.btn-empty-state:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,111,158,0.38);
    color: #fff;
}

/*--------------------------------------------------------------
  SHOW PAGE
--------------------------------------------------------------*/

.carousel-item img {
    height: 500px;
    object-fit: cover;
    border-radius: var(--catalog-radius);
}
.carousel-indicators [data-bs-target] {
    background-color: var(--catalog-accent);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.description-content {
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    padding: 1.5rem;
    border-radius: 0.9rem;
    border-left: 4px solid var(--catalog-accent);
}

.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    border: 1px solid rgba(14,111,158,0.12);
    border-radius: 0.65rem;
    color: #495057;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.25s;
}
.amenity-badge:hover {
    background: linear-gradient(135deg, rgba(14,111,158,0.06), rgba(23,162,184,0.06));
    border-color: rgba(14,111,158,0.25);
    color: var(--catalog-accent);
    transform: translateY(-1px);
}
.amenity-badge i {
    color: var(--catalog-accent);
    font-size: 1.05rem;
}

.badge.bg-light {
    background: linear-gradient(135deg, rgba(14,111,158,0.08), rgba(23,162,184,0.08)) !important;
    color: var(--catalog-accent) !important;
    border-color: rgba(14,111,158,0.2) !important;
    font-weight: 600;
}

/*--------------------------------------------------------------
  BOOKING CARD 
--------------------------------------------------------------*/
.booking-card {
    position: sticky;
    z-index: 900;
    border: 1px solid rgba(14,111,158,0.12);
    border-radius: var(--catalog-radius);
    box-shadow: 0 6px 30px var(--catalog-shadow-lg);
    background: #fff;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f8f9fa;
    position: relative;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--catalog-gradient);
    z-index: 1;
}

.booking-card::-webkit-scrollbar { width: 6px; }
.booking-card::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 0 1rem 1rem 0;
    margin: 1rem 0;
}
.booking-card::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 10px;
    border: 2px solid #f8f9fa;
}
.booking-card::-webkit-scrollbar-thumb:hover {
    background-color: var(--catalog-accent);
}

.booking-header {
    background: var(--catalog-gradient);
    color: #fff;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
}

.booking-header p {
    opacity: 0.85;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.price-large {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.booking-body {
    padding: 1.75rem;
}

.booking-body h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-body .form-control,
.booking-body .form-select {
    border: 2px solid #e9ecef;
    border-radius: 0.65rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    transition: all 0.25s;
}
.booking-body .form-control:focus,
.booking-body .form-select:focus {
    border-color: var(--catalog-accent);
    box-shadow: 0 0 0 3px rgba(14,111,158,0.10);
    outline: none;
}
.booking-body .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.4rem;
}

.booking-summary {
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    border-radius: 0.9rem;
    padding: 1rem 1.1rem;
    margin-top: 1rem;
    border: 2px dashed rgba(14,111,158,0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.summary-item:last-child { border-bottom: none; }

.summary-label { font-weight: 500; }
.summary-value {
    font-weight: 600;
    color: #495057;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(14,111,158,0.2);
}
.total-label {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    color: var(--heading-color);
}
.total-value {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--catalog-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-item {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
    color: #6c757d;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    border-radius: 0.65rem;
    border: 1px solid #e9ecef;
}
.policy-icon {
    color: var(--catalog-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.btn-reservar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--catalog-gradient);
    color: #fff !important;
    border: none;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--heading-font);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(14,111,158,0.35);
    cursor: pointer;
}
.btn-reservar:hover:not(.disabled) {
    filter: brightness(0.93);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14,111,158,0.45);
}
.btn-reservar.disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #adb5bd;
    box-shadow: none;
    transform: none !important;
    -webkit-text-fill-color: #fff;
}

#extra-fee-notice {
    font-size: 0.8rem;
    color: var(--catalog-accent);
    background: linear-gradient(135deg, rgba(14,111,158,0.06), rgba(23,162,184,0.06));
    border-radius: 0.5rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(14,111,158,0.15);
    margin-top: 0.4rem;
}

#availability-status .alert {
    border-radius: 0.65rem;
    font-size: 0.85rem;
    border: none;
    font-weight: 500;
}
#availability-status .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}
#availability-status .alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}
#availability-status .alert-info {
    background: linear-gradient(135deg, rgba(14,111,158,0.08), rgba(23,162,184,0.08));
    color: var(--catalog-accent);
}

/*--------------------------------------------------------------
  CTA SECTION
--------------------------------------------------------------*/
.students-life-block .btn-cta-whatsapp,
.students-life-block .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--catalog-gradient) !important;
    border: none !important;
    border-radius: 2rem !important;
    padding: 0.85rem 2.25rem !important;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 18px rgba(14,111,158,0.35);
    transition: all 0.3s ease;
    color: #fff !important;
    text-decoration: none;
}
.students-life-block .btn.btn-primary:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14,111,158,0.45);
}

/*--------------------------------------------------------------
  PAGINATION
--------------------------------------------------------------*/
.pagination .page-link {
    border-radius: 0.5rem !important;
    border: 2px solid #e9ecef;
    color: var(--catalog-accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    margin: 0 0.15rem;
    transition: all 0.25s;
}
.pagination .page-link:hover {
    background: linear-gradient(135deg, rgba(14,111,158,0.08), rgba(23,162,184,0.08));
    border-color: var(--catalog-accent);
    color: var(--catalog-accent);
}
.pagination .page-item.active .page-link {
    background: var(--catalog-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 10px rgba(14,111,158,0.3);
}
.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    border-color: #e9ecef;
}

/*--------------------------------------------------------------
  HERO SECTION
--------------------------------------------------------------*/
.hero .hero-content h1 {
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--heading-color);
}

.hero .stats-row {
    display: flex;
    gap: 2rem;
}

.hero .stat-item {
    display: flex;
    flex-direction: column;
}

.hero .stat-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 800;
    background: var(--catalog-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero .stat-label {
    font-size: 0.82rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .badge-accredited {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--catalog-gradient);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(14,111,158,0.35);
}

/*--------------------------------------------------------------
  RESPONSIVE
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .filter-panel {
        position: static !important;
        margin-bottom: 2rem;
        top: 0;
        max-height: none;
        overflow: visible;
    }

    .booking-card {
        position: static !important;
        margin-top: 2rem;
        max-height: none;
    }
}

@media (max-width: 767px) {
    .carousel-item img {
        height: 280px;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .hero .stats-row {
        gap: 1.5rem;
    }

    .hero .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .booking-body {
        padding: 1.25rem;
    }

    .price-large {
        font-size: 1.8rem;
    }
}