 :root {
            --primary: #ec0d0dff;
            --secondary: #ec0d0dff;
            --accent: #ec0d0dff;
            --light: #ecf0f1;
            --dark: #34495e;
        }
        
   
      
        .hotel-card {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            margin-bottom: 25px;
            height: 100%;
            background: white;
                                  color: rgb(0, 0, 0);

        }
        
        .hotel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
                                  color: rgb(0, 0, 0);

        }
        
        .hotel-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }
        
        .category-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .card-body {
            padding: 20px;
        }
        
        .hotel-name {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .description {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 15px;
            height: 80px;
            overflow: hidden;
        }
        
        .btn-details {
            background: var(--secondary);
            border: none;
            width: 100%;
            padding: 10px;
            font-weight: 600;
            transition: all 0.3s;
            color:#ffffff;
        }
        
        .btn-details:hover {
            background: #000000;
                        color:#ffffff;

        }
        
        .filters {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .filter-title {
            color: var(--primary);
            font-weight: 700;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .pagination-container {
            margin-top: 30px;
            display: flex;
            justify-content: center;
        }
        
        .page-item.active .page-link {
            background-color: var(--secondary);
            border-color: var(--secondary);
        }
        
        .page-link {
            color: var(--secondary);
        }
        
        .modal-header {
            background: linear-gradient(90deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
                                  color: rgb(0, 0, 0);

        }

         .modal {
      
                                  color: rgb(0, 0, 0);

        }
        
        .hotel-features {
            list-style: none;
            padding-left: 0;
        }
        
        .hotel-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .hotel-features li:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            color: var(--secondary);
            margin-right: 10px;
            width: 20px;
        }
        
        .hotel-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-align: center;
            margin: 20px 0;
        }
        
        .quote-form .form-label {
            font-weight: 600;
            color: var(--dark);
        }
        
        .btn-quote {
            background: var(--accent);
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
            margin-top: 20px;
            color: #ffffff;
        }
        
        .btn-quote:hover {
            background: #c0392b;
        }
        
      
        
        .stars {
            color: #f1c40f;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .hotel-location {
            color: #7f8c8d;
            margin-bottom: 10px;
        }
        
        .price-slider-container {
            padding: 0 15px;
        }
        
        .price-slider {
            width: 100%;
            height: 8px;
            background: #dee2e6;
            border-radius: 5px;
            outline: none;
        }
        
        .price-value {
            font-weight: 600;
            color: var(--accent);
            text-align: center;
            margin-top: 10px;
        }
        
        .filter-section {
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .filter-section h6 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Estilos para la alerta personalizada */
        .alert-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1050;
        }
        
        .alert-box {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            overflow: hidden;
            animation: alertAppear 0.4s ease-out;
        }
        
        @keyframes alertAppear {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert-header {
            background: linear-gradient(90deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .alert-header h5 {
            margin: 0;
            font-weight: 600;
        }
        
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            line-height: 1;
        }
        
        .alert-body {
            padding: 25px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .alert-content h5 {
            color: var(--primary);
            text-align: center;
            margin-bottom: 20px;
        }
        
        .alert-content .alert-section {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
        }
        
        .alert-content .alert-section h6 {
            color: var(--primary);
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 8px;
            margin-bottom: 12px;
        }
        
        .alert-content .btn-container {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .btn-accept {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-accept:hover {
            background: #ec0d0dff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }